mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
31 lines
574 B
Solidity
31 lines
574 B
Solidity
/// @author Lefteris
|
|
/// @title Just a test contract
|
|
contract test {
|
|
/// @dev Mul function
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
|
}
|
|
|
|
// ----
|
|
// ----
|
|
// :test devdoc
|
|
// {
|
|
// "author": "Lefteris",
|
|
// "kind": "dev",
|
|
// "methods":
|
|
// {
|
|
// "mul(uint256,uint256)":
|
|
// {
|
|
// "details": "Mul function"
|
|
// }
|
|
// },
|
|
// "title": "Just a test contract",
|
|
// "version": 1
|
|
// }
|
|
//
|
|
// :test userdoc
|
|
// {
|
|
// "kind": "user",
|
|
// "methods": {},
|
|
// "version": 1
|
|
// }
|