Skip to content

Instantly share code, notes, and snippets.

View Tigersame's full-sized avatar
💭
I may be slow to respond.

devsss7 Tigersame

💭
I may be slow to respond.
View GitHub Profile
pragma solidity 0.4.24;
contract EthereumSession {
uint myInt;
function setTheInt(uint _myInt) public {
myInt = _myInt;
}
function getTheInt() public view returns(uint) {