pragma solidity ^0.4.18;contract test{ function mul(uint a) public pure returns (uint) { uint c = a * 7; return c; }}
本文共 187 字,大约阅读时间需要 1 分钟。
pragma solidity ^0.4.18;contract test{ function mul(uint a) public pure returns (uint) { uint c = a * 7; return c; }}
转载于:https://www.cnblogs.com/ahuo/p/8182927.html