Created
November 9, 2017 20:40
-
-
Save juliosantos/ff031fbd0cef9d787b97bb02b72e7c2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.0; | |
contract Eventer { | |
event Record( | |
address _from, | |
string _message | |
); | |
function record(string message) { | |
Record(msg.sender, message); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment