Skip to content

Instantly share code, notes, and snippets.

@jonathunne
Created July 24, 2019 23:37
Show Gist options
  • Select an option

  • Save jonathunne/8d5aa2230cee2ef90d1608e1687fd61d to your computer and use it in GitHub Desktop.

Select an option

Save jonathunne/8d5aa2230cee2ef90d1608e1687fd61d to your computer and use it in GitHub Desktop.
pragma solidity 0.4.24;
contract PingPong {
event Pong(address _pinger);
function ping() public {
emit Pong(msg.sender);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment