Skip to content

Instantly share code, notes, and snippets.

@bulgakovk
Created May 3, 2018 14:39
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 bulgakovk/5b7e7bd5aee0bfe865fc3ec1a2ce6125 to your computer and use it in GitHub Desktop.
Save bulgakovk/5b7e7bd5aee0bfe865fc3ec1a2ce6125 to your computer and use it in GitHub Desktop.
interface ICallee {
function makeCall(uint val) returns(uint);
}
contract Caller {
ICallee public callee;
function call() {
callee.makeCall(42);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment