Advertisement
ethnewbiethrowaway

Inbox Smart Contract

Nov 15th, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. pragma solidity ^0.4.25;
  2.  
  3. contract Inbox {
  4. string public message;
  5.  
  6. constructor(string initialMessage) public {
  7. message = initialMessage;
  8. }
  9.  
  10.  
  11. function setMessage (string newMessage) public {
  12. message = newMessage;
  13. }
  14.  
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement