Skip to content

Instantly share code, notes, and snippets.

@hayeah
Created September 3, 2017 10:29
Show Gist options
  • Save hayeah/de74c658301ec14e4c56d10dd645e1bc to your computer and use it in GitHub Desktop.
Save hayeah/de74c658301ec14e4c56d10dd645e1bc to your computer and use it in GitHub Desktop.
solidity ^0.4.11;
contract C {
uint256 a;
// Note: `payable` makes the assembly a bit simpler
function setA(uint256 _a) payable {
a = _a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment