GoodArrayUse.sol 148 B

1234567891011
  1. contract GoodArrayUse {
  2. address[] employees;
  3. function payroll() {
  4. for (uint i = 0; i < employees.length; i++) {
  5. }
  6. }
  7. }