Created
March 22, 2018 09:23
-
-
Save kirillsurkov/b49ce3b7003448e79d64de1c8a169d3e 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.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