This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
contract Test { | |
uint8 x; | |
function get() public view returns (uint8) { | |
return x; | |
} | |
function set(uint8 _x) public { |