mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
250 B
Solidity
9 lines
250 B
Solidity
|
contract test {
|
||
|
/// @dev Multiplies a number by 7 and adds second parameter
|
||
|
/// @param a Documentation for the first parameter
|
||
|
/// @param
|
||
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
||
|
}
|
||
|
|
||
|
// ----
|