Skip to content

Instantly share code, notes, and snippets.

@Turupawn
Created May 24, 2021 23:38
Show Gist options
  • Save Turupawn/06c15878ddc61caf2594cd603db5e97c to your computer and use it in GitHub Desktop.
Save Turupawn/06c15878ddc61caf2594cd603db5e97c to your computer and use it in GitHub Desktop.
// 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