]> ruin.nu Git - proglang.git/blob - examples/typeerror-scope
readBool now reads integer values, where 0 is false and the rest is true, instead...
[proglang.git] / examples / typeerror-scope
1 int a = readInt;
2
3 if (a > 5){
4         bool b = true;
5 }
6
7 print b;