Hey guys! I've been having a little bit of a problem... I am unable to invoke an objects super constructor!
Here's basically what I tried:
class MyOtherClass{
MyOtherClass(int i) { println(i); } } class MyClass extends MyOtherClass { MyClass(int i) { super(i); } }
Anyways, no matter how I tried this, there was always an unexpected token exception on the opening parenthese. If any one can help me, I will greatly appreciate it!