examples and more contracts
This commit is contained in:
11
contracts/GoodArrayUse.sol
Normal file
11
contracts/GoodArrayUse.sol
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
contract GoodArrayUse {
|
||||
address[] employees;
|
||||
|
||||
function payroll() {
|
||||
for (uint i = 0; i < employees.length; i++) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user