Created
December 14, 2018 12:33
-
-
Save JoranHonig/ab9f57946cea6a0a6a530f07abfa4cb6 to your computer and use it in GitHub Desktop.
This file contains 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
function execute(uint256 input) public (uint256){ | |
uint memory result = 0; | |
if (input > 10) { | |
result += 10; | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment