mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
480 B
Solidity
27 lines
480 B
Solidity
contract C {
|
|
/**
|
|
* @dev a function
|
|
* @param _from 5 from address
|
|
* @param _5to : to address
|
|
* @param value: token transfer amount
|
|
* @param value? token transfer amount
|
|
*/
|
|
function f(address _from, address _5to, uint256 value) internal {
|
|
}
|
|
}
|
|
// ----
|
|
// ----
|
|
// :C devdoc
|
|
// {
|
|
// "kind": "dev",
|
|
// "methods": {},
|
|
// "version": 1
|
|
// }
|
|
//
|
|
// :C userdoc
|
|
// {
|
|
// "kind": "user",
|
|
// "methods": {},
|
|
// "version": 1
|
|
// }
|