Advertisement
maxxmaxx

contract.sol

Apr 3rd, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //Sample contract
  2. contract Sample
  3. {
  4. uint value;
  5. function Sample(uint v) {
  6. value = v;
  7. }
  8. function set(uint v) {
  9. value = v;
  10. }
  11. function get() constant returns (uint) {
  12. return value;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement