Skip to content

Instantly share code, notes, and snippets.

@yhuag
Created June 26, 2018 07:03
Show Gist options
  • Save yhuag/d0380087dd5d1d617e7816a2bc141f93 to your computer and use it in GitHub Desktop.
Save yhuag/d0380087dd5d1d617e7816a2bc141f93 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.21;
// @title MAR mode: Module-Agnostic Rendering Mode (Module)
// @author Jeff Hu
// @dev This smart contract is an atomic callable stub
contract M {
bool public value = false;
function setTrue() public {
value = true;
}
function setFalse() public {
value = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment