Skip to content

Instantly share code, notes, and snippets.

@juliosantos
Created November 9, 2017 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliosantos/ff031fbd0cef9d787b97bb02b72e7c2a to your computer and use it in GitHub Desktop.
Save juliosantos/ff031fbd0cef9d787b97bb02b72e7c2a to your computer and use it in GitHub Desktop.
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