3分钟Solidity: 1.2 第一个DApp(去中心化应用)

23 阅读1分钟

以下是一个简单的合约,你可以根据合约中存储的数量进行递增和减少。

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;

contract Counter {
    uint256 public count;

    // Function to get the current count
    function get() public view returns (uint256) {
        return count;
    }

    // Function to increment count by 1
    function inc() public {
        count += 1;
    }

    // Function to decrement count by 1
    function dec() public {
        // This function will fail if count = 0
        count -= 1;
    }
}

Remix Lite 尝试一下

第一个DApp


END