Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / Test.sol
Created January 25, 2018 06:35
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.19+commit.c4cbbb05.js&optimize=false&gist=
pragma solidity ^0.4.18;
contract Test {
uint8 x;
function get() public view returns (uint8) {
return x;
}
function set(uint8 _x) public {