Created
May 24, 2021 23:38
-
-
Save Turupawn/06c15878ddc61caf2594cd603db5e97c to your computer and use it in GitHub Desktop.
Ver video en https://youtu.be/rOLLV3aRgb4
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.4; | |
contract MyContract { | |
string public hello; | |
constructor() | |
{ | |
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