mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-26 02:57:57 +00:00
ea63991617
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
10 lines
163 B
Solidity
10 lines
163 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
contract Value {
|
|
function value() public payable returns (uint ret) {
|
|
ret = msg.value;
|
|
}
|
|
}
|