Skip to content

Instantly share code, notes, and snippets.

@Chanutg
Last active April 11, 2019 14:04
Show Gist options
  • Save Chanutg/5e28079c6f86c82c5e0ee4f332cf2339 to your computer and use it in GitHub Desktop.
Save Chanutg/5e28079c6f86c82c5e0ee4f332cf2339 to your computer and use it in GitHub Desktop.
pragma solidity ^0.5.0;
contract HelloWorld {
string public sentence;
constructor() public {
sentence = "HelloWorld !";
}
function saySomething() public view returns(string memory){
return (sentence);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment