堅牢性-最初のアプリケーション

私たちは、使用しているリミックスIDEをコンパイルするには、私たちのソリディティコードベースを実行します。

Step 1 − RemixIDEコードセクションで指定されたコードをコピーします。

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;
   }
}

Step 2 − [コンパイル]タブで、[ Start to Compile ボタン。

Step 3 − [実行]タブで、[ Deploy ボタン。

Step 4 − [実行]タブで、[選択]を選択します SolidityTest at 0x... ドロップダウンで。

Step 5 −クリック getResult 結果を表示するボタン。

出力

0: uint256: 3