mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
147 B
Solidity
8 lines
147 B
Solidity
// implicit conversions
|
|
fixed64x2 constant a = 1.23;
|
|
ufixed64x2 constant b = 1.23;
|
|
|
|
// explicit conversions
|
|
fixed constant c = fixed(1/3);
|
|
// ----
|