solidity/test/libsolidity/ABIJson/basic_test.sol
2019-07-02 18:11:49 +02:00

29 lines
485 B
Solidity

contract test {
function f(uint a) public returns (uint d) { return a * 7; }
}
// ----
// :test
// [
// {
// "constant": false,
// "inputs":
// [
// {
// "name": "a",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
// "name": "d",
// "type": "uint256"
// }
// ],
// "payable": false,
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]