Skip to content

Instantly share code, notes, and snippets.

@maellson
Created May 18, 2020 20:20
Show Gist options
  • Save maellson/c6c05e97f6d9d1c0f1d09c97a76c36ac to your computer and use it in GitHub Desktop.
Save maellson/c6c05e97f6d9d1c0f1d09c97a76c36ac to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.17+commit.d19bba13.js&optimize=false&gist=
pragma solidity ^0.4.0;
contract GuardaLoteria {
uint numeroSorteado;
function set(uint enviado) public{
numeroSorteado = enviado;
}
function get() public view returns (uint) {
return numeroSorteado;
}
}
pragma solidity ^0.5.2;
/**
* The contractName contract does this and that...
*/
contract HelloWorld {
string public text;//defeiniu uma string como send publica de acesso global
uint public number;
function setText (string memory myText) public {
text = myText;
}
function setNumber (uint myNumber) public {
number = myNumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment