Hi Alex,
o2 is itself a 32bit program, but I have not tried moving o2 into program files(x86)
the default includepath is "..\inc\"
but you can specify any path including absolute paths
uses is a short form of #include which allows quotes and '.inc' to be omitted.
Inherited classes can be specified in various ways consistent with classes having the syntax of type
class ca
int i
end class
class cb
'single-line of inheritance
extends ca 'can also use 'of' or 'from'
'multiple inheritance
has ca
ca
ca aa,bb
aa as ca
int b
end class
#recordof cb
public, private and protected have been disabled but you can still use these terms indicatively.
static members are naturally private; they are always invisible outside the class.