Solidity - 首次应用


我们使用Remix IDE来编译和运行我们的 Solidity 代码库。

步骤 1 - 复制 Remix IDE 代码部分中的给定代码。

例子

pragma solidity ^0.5.0;
contract SolidityTest {
   constructor() public{
   }
   function getResult() public view returns(uint){
      uint a = 1;
      uint b = 2;
      uint result = a + b;
      return result;
   }
}

步骤 2 - 在“编译”选项卡下,单击“开始编译”按钮。

步骤 3 - 在“运行”选项卡下,单击“部署”按钮。

步骤 4 - 在“运行”选项卡下,在下拉列表中选择“SolidityTest at 0x...” 。

步骤 5 - 单击getResult按钮显示结果。

输出

0: uint256: 3