mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
25 lines
384 B
Solidity
25 lines
384 B
Solidity
contract test {
|
|
function mul(uint a) public returns (uint d) {
|
|
return a * 7;
|
|
}
|
|
function sub(int input) public returns (int d) {
|
|
return input - 3;
|
|
}
|
|
}
|
|
|
|
// ----
|
|
// ----
|
|
// :test devdoc
|
|
// {
|
|
// "kind": "dev",
|
|
// "methods": {},
|
|
// "version": 1
|
|
// }
|
|
//
|
|
// :test userdoc
|
|
// {
|
|
// "kind": "user",
|
|
// "methods": {},
|
|
// "version": 1
|
|
// }
|