mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
314 B
Solidity
18 lines
314 B
Solidity
contract test {
|
|
/// @dev Mul function
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
|
}
|
|
|
|
// ----
|
|
// ----
|
|
// :test devdoc
|
|
// {
|
|
// "methods":
|
|
// {
|
|
// "mul(uint256,uint256)":
|
|
// {
|
|
// "details": "Mul function"
|
|
// }
|
|
// }
|
|
// }
|