Skip to content

Instantly share code, notes, and snippets.

@yhuag
Last active March 31, 2018 07:04
Show Gist options
  • Save yhuag/f22afa59b6b7f1f2620c1a16a92fcccc to your computer and use it in GitHub Desktop.
Save yhuag/f22afa59b6b7f1f2620c1a16a92fcccc to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.13;
contract Sample {
uint public a = 0;
function Sample() public {
a = 10;
}
}
contract Sample2 {
uint public a = 0;
function Sample2() public {
a = 10;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment