I'm getting a strange problem....
I've been trying to get kawa compiled objects to instantiate from
Java...
I compiled this:
(define somevar 5)
to a class called a.class.
Then I did this in Java:
public void main(String...
{
a a1=new a();
}
compiled it and ran it and I get a NullPointerException in <init>.
Any ideas?
Nic