Skip to content

Instantly share code, notes, and snippets.

@Turupawn
Last active February 4, 2022 22:18
Show Gist options
  • Save Turupawn/3ed2343b2eccdfd271e2156ad6803c2d to your computer and use it in GitHub Desktop.
Save Turupawn/3ed2343b2eccdfd271e2156ad6803c2d to your computer and use it in GitHub Desktop.
// 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