All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sts.0.18-android.source-code.Advance.sol Maven / Gradle / Ivy

pragma solidity ^0.4.19;
import "./SafeMath.sol";

contract Advance {
    using SafeMath for uint256;
    uint256 count = 0;

    function add() {
        count = count.add(1);
    }

    function get() constant returns(uint256) {
        return count;
    }

    function reset() {
        count = 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy