编写solidity智能合约并调用(testrpc)输出结果

一、编写合约代码 pragma solidity ^0.4.2; contract test { function add(uint a,uint b) public pure returns(uint c) { return a + b ; } } 二、编译合约 打开网站:https://ethereum.github.io/browser-soliditypython 输入合约代
相关文章
相关标签/搜索