mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-25 16:27:57 +00:00
21dd0abb8a
Signed-off-by: xermicus <cyrill@parity.io>
8 lines
140 B
Solidity
8 lines
140 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
contract Value {
|
|
function value() public payable returns (uint ret) {
|
|
ret = msg.value;
|
|
}
|
|
}
|