Skip to content

Instantly share code, notes, and snippets.

@hayeah
Created August 13, 2017 09:05
Show Gist options
  • Save hayeah/20807b367bcd5afd3dd86038e1a3fba2 to your computer and use it in GitHub Desktop.
Save hayeah/20807b367bcd5afd3dd86038e1a3fba2 to your computer and use it in GitHub Desktop.
solidity ^0.4.11;
contract C {
uint64 a;
uint64 b;
uint64 c;
uint64 d;
function C() {
setAB();
setCD();
}
function setAB() internal {
a = 0xaaaa;
b = 0xbbbb;
}
function setCD() internal {
c = 0xcccc;
d = 0xdddd;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment