- Points
- 822
- Digest
- 0
- R.P.
- 50
- Joined
- 2011-6-13
- Last visit
- 2012-11-23
- Posts
- 277

|
You got the right result. "true" is 1, "false" is 0, so in the compiler they were just omitted. You may use 1 and 0.
null is different from 0.
There is no type system, so
var b:boolean; // i guess the types are ignored
var c:gibberishtype; // no error!
can be compiled, but types are ignored.
a = "int:" + c; Cannot add String with Int, you may do "int:"+str(c);
There is no toString() API
|
|