Add support for types (i.e. non-external ones)
So that you can do this:
type SomethingUseful {
name : String
function sayHello() : String {
return this.name;
}
}…
var s = SomethingUseful(name=“Zef”);
Submitted by Zef Hemel on 17 August 2010 at 10:19
s.sayHello();