Guest User

Untitled

a guest
Nov 23rd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. pragma solidity ^0.4.18;
  2.  
  3. contract helloworld {
  4. string message;
  5. function helloworld() public {
  6. message = "Hello World by Tamachan!";
  7. }
  8.  
  9. function setHelloworld(string _message) public {
  10. message = _message;
  11. }
  12.  
  13. function getHelloworld() constant returns (string) {
  14. return message;
  15. }
  16. }
Add Comment
Please, Sign In to add comment