examples and more contracts

This commit is contained in:
Manuel Araoz
2016-08-10 15:23:39 -03:00
parent c9ae7c3f1c
commit 015708af62
9 changed files with 132 additions and 3 deletions

View File

@ -0,0 +1,11 @@
contract GoodArrayUse {
address[] employees;
function payroll() {
for (uint i = 0; i < employees.length; i++) {
}
}
}