Posted 23 April 2014 - 10:01 AM
Hey folks,
How can I program an array or better, can I turn an table to an array?
And then, is there a possibility to let this work with a for loop?
In java there is a posibility like this
Thank you!
Mineorbit
How can I program an array or better, can I turn an table to an array?
And then, is there a possibility to let this work with a for loop?
In java there is a posibility like this
List<Object> objectarray = new ArrayList<Object>();
for(Object o : objectarray)
{
System.out.println(o);
}
How could I do this with lua(computercraft?Thank you!
Mineorbit