Advertisement
kevin2458

Untitled

Sep 14th, 2018
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. pragma solidity ^0.4.24;
  2.  
  3. contract HolaMundo {
  4.  
  5. string mensaje;
  6.  
  7.  
  8. constructor() public {
  9. mensaje = "¡Hola mundo!";
  10. }
  11.  
  12.  
  13. function setMensaje(string _mensaje) public {
  14. mensaje = _mensaje;
  15. }
  16.  
  17. function getMensaje() public constant returns(string) {
  18. return mensaje;
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement