Skip to content

Instantly share code, notes, and snippets.

@PhyrexTsai
Created July 17, 2017 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PhyrexTsai/d58756f071b059eae4c7e86a270cf49a to your computer and use it in GitHub Desktop.
Save PhyrexTsai/d58756f071b059eae4c7e86a270cf49a to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.11;
contract Callee {
uint256 public counter;
function addOne() {
counter = counter + 1;
}
function addNum(uint256 num) {
counter = counter + num;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment