mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-25 15:17:57 +00:00
10 lines
166 B
Solidity
10 lines
166 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.24;
|
|
|
|
contract Value {
|
|
function value() public payable returns (uint ret) {
|
|
ret = msg.value;
|
|
}
|
|
}
|