Last active
February 4, 2022 22:18
-
-
Save Turupawn/3ed2343b2eccdfd271e2156ad6803c2d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.11; | |
contract Hello | |
{ | |
string public hello = "Hola mundo!"; | |
function setHello(string memory _hello) public | |
{ | |
hello = _hello; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment