solidity/test/libsolidity/syntaxTests/string/string_unicode.sol

7 lines
126 B
Solidity
Raw Normal View History

contract test {
function f() public pure returns (string memory) {
return "😃, 😭, and 😈";
}
}
// ----