Guest User

Untitled

a guest
May 21st, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. pragma solidity ^0.4.17;
  2.  
  3. contract Inbox {
  4. string public message;
  5.  
  6. constructor(string initialMessage) public {
  7. message = initialMessage;
  8. }
  9.  
  10. function setMessage(string newMessage) public {
  11. message = newMessage;
  12. }
  13.  
  14. function getMessage() public view returns (string) {
  15. return message;
  16. }
  17. }
Add Comment
Please, Sign In to add comment