Hi list,
I am trying to make a list of objects where each object has
references to other objects, but I am not succeeding and I get a
NullPointerException. The piece of code below may represent what I am
trying to do.
class object
{
Std.rand2f(0., 1.) => float f_;
}
class Item extends object
{
2 => int size_;
object item_[size_];
fun void print()
{
for( 0=>int i; i