This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
contract AdditionContract { | |
uint public state = 0; | |
function add(uint value1, uint value2) public { | |
state = value1 + value2; | |
} | |
function getState() public constant returns (uint) { |