Guest User

Untitled

a guest
Jul 15th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. pragma solidity ^0.4.18;
  2.  
  3. contract ContratoQualquer {
  4.  
  5. // variável qualquer
  6. bool public valor = false;
  7. address public test;
  8.  
  9. // função qualquer
  10. function alterarValor() public {
  11. valor = test == 0;
  12. }
  13. }
Add Comment
Please, Sign In to add comment