Files

10 lines
178 B
Solidity

contract C {
event E(string r);
function deposit() public {
emit E("HELLO WORLD");
}
}
// ----
// deposit() ->
// ~ emit E(string): 0x20, 0x0b, "HELLO WORLD"