Created
July 26, 2018 12:52
-
-
Save Rinuys/11e1e2e93ae035fcd3becf774419af51 to your computer and use it in GitHub Desktop.
ethereum gas solidity example
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
pragma solidity ^0.4.19; | |
contract A { | |
uint b; | |
function saveB(uint _b) public { | |
b = _b; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment