mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
242 B
Solidity
17 lines
242 B
Solidity
contract C {
|
|
function f() public
|
|
{
|
|
a = 1 wei;
|
|
b = 2 szabo;
|
|
c = 3 finney;
|
|
d = 4 ether;
|
|
e = 5 gwei;
|
|
}
|
|
uint256 a;
|
|
uint256 b;
|
|
uint256 c;
|
|
uint256 d;
|
|
uint256 e;
|
|
}
|
|
// ----
|