Skip to content

Instantly share code, notes, and snippets.

@kirillsurkov
Created March 22, 2018 09:23
Show Gist options
  • Select an option

  • Save kirillsurkov/b49ce3b7003448e79d64de1c8a169d3e to your computer and use it in GitHub Desktop.

Select an option

Save kirillsurkov/b49ce3b7003448e79d64de1c8a169d3e to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.20;
contract Main {
uint public xxx;
event TestEvent (
uint value
);
function Main() public {
xxx = 8;
TestEvent(xxx);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment