mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
115 B
Solidity
7 lines
115 B
Solidity
function str(uint32, uint) pure returns (string memory) {}
|
|
contract C {
|
|
string s = 123.345_789 str;
|
|
}
|
|
|
|
// ----
|