Created
June 5, 2016 22:42
-
-
Save tim-br/c63bfb18c028998350711e959d06ef18 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
contract TestEvent{ | |
string greeting; | |
event TeEv(string input); | |
function TestEvent(string _greeting){ | |
greeting = _greeting; | |
} | |
function get_greeting() constant returns(string){ | |
TeEv("in get_greeting function"); | |
return greeting; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment