You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
341 B
22 lines
341 B
6 years ago
|
pragma solidity ^0.5.0;
|
||
8 years ago
|
|
||
|
contract Test {
|
||
|
|
||
|
function multiline(
|
||
|
uint a,
|
||
|
uint b,
|
||
|
uint c,
|
||
6 years ago
|
bytes32 d) public
|
||
8 years ago
|
{
|
||
6 years ago
|
uint x = a;
|
||
8 years ago
|
}
|
||
|
|
||
6 years ago
|
constructor() public {
|
||
8 years ago
|
multiline(
|
||
|
1,
|
||
|
2,
|
||
|
3,
|
||
6 years ago
|
keccak256(abi.encodePacked('hello'))
|
||
8 years ago
|
);
|
||
|
}
|
||
|
}
|