2023-08-09 16:16:14 +00:00
|
|
|
/// @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",
|
2023-08-09 17:33:35 +00:00
|
|
|
// "kind": "dev",
|
2023-08-09 16:16:14 +00:00
|
|
|
// "methods":
|
|
|
|
// {
|
|
|
|
// "mul(uint256,uint256)":
|
|
|
|
// {
|
|
|
|
// "details": "Mul function"
|
|
|
|
// }
|
|
|
|
// },
|
2023-08-09 17:33:35 +00:00
|
|
|
// "title": "Just a test contract",
|
|
|
|
// "version": 1
|
2023-08-09 16:16:14 +00:00
|
|
|
// }
|
2023-08-21 10:32:33 +00:00
|
|
|
//
|
|
|
|
// :test userdoc
|
|
|
|
// {
|
|
|
|
// "kind": "user",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|