Closed xhliu closed 2 years ago
used in multiple places, e.g.,
uint storedData & uint x & bool y
uint storedData
uint x
bool y
contract SimpleStorage { uint storedData; function set(uint x) external { // bool y = x > 0; storedData = x; } function get() public view returns (uint) { return storedData; } }
used in multiple places, e.g.,
uint storedData
&uint x
&bool y