This is how I'm trying to do it:
interface a{}
class b implements a{
a[] array;
new b(){
array={ new aImplementer(), new aImplementer(), new aImplementer()};
}
}
Why can't I do this? Am I just doing it wrong? Right now the error I'm getting is an illegal start of expression error at the { part of array={