mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
33 lines
572 B
Solidity
33 lines
572 B
Solidity
|
contract test {
|
||
|
function f(uint a, uint b) public returns (uint d) { return a + b; }
|
||
|
}
|
||
|
// ----
|
||
|
// :test
|
||
|
// [
|
||
|
// {
|
||
|
// "constant": false,
|
||
|
// "inputs":
|
||
|
// [
|
||
|
// {
|
||
|
// "name": "a",
|
||
|
// "type": "uint256"
|
||
|
// },
|
||
|
// {
|
||
|
// "name": "b",
|
||
|
// "type": "uint256"
|
||
|
// }
|
||
|
// ],
|
||
|
// "name": "f",
|
||
|
// "outputs":
|
||
|
// [
|
||
|
// {
|
||
|
// "name": "d",
|
||
|
// "type": "uint256"
|
||
|
// }
|
||
|
// ],
|
||
|
// "payable": false,
|
||
|
// "stateMutability": "nonpayable",
|
||
|
// "type": "function"
|
||
|
// }
|
||
|
// ]
|