msg_01.sol 146 B

123456
  1. contract bar {
  2. function test(uint128 v) public returns (bool) {
  3. return msg.value > v;
  4. }
  5. }