Guest User

Untitled

a guest
May 27th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. pragma solidity ^0.4.21;
  2.  
  3. contract StructExample {
  4.  
  5. uint public state = 1;
  6.  
  7. function AddNumber(uint _amount) external returns(uint){
  8. state+= _amount;
  9. return state;
  10. }
  11. }
Add Comment
Please, Sign In to add comment