Skip to content

Instantly share code, notes, and snippets.

@chrisfranko
Created September 9, 2016 13:09
Show Gist options
  • Save chrisfranko/f5093c14696827c601d1e552795d488c to your computer and use it in GitHub Desktop.
Save chrisfranko/f5093c14696827c601d1e552795d488c to your computer and use it in GitHub Desktop.
contract Test {
string public echoecho;
function Test(){
echoecho = "This is just a test";
}
function(){
throw;
}
function echo() returns(string){
return echoecho;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment