Skip to content

Instantly share code, notes, and snippets.

@Rinuys
Created July 26, 2018 12:52
Show Gist options
  • Save Rinuys/11e1e2e93ae035fcd3becf774419af51 to your computer and use it in GitHub Desktop.
Save Rinuys/11e1e2e93ae035fcd3becf774419af51 to your computer and use it in GitHub Desktop.
ethereum gas solidity example
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