after removing each

This commit is contained in:
Mike Nolan 2024-09-01 22:25:10 -05:00
parent a29b328fd2
commit 5b32dd7036
1 changed files with 2 additions and 3 deletions

View File

@ -3,10 +3,9 @@
d.add(5);
d.add(6);
d.add("Demi Lovato");
each(d)
for(i = 0;i<d.count;i++)
{
print item;
print d.at(i);
print "\n";
}
-->