]> ruin.nu Git - proglang.git/blob - examples/typeerror-scope
CompInt, integrated compiler and interpreter for the new century
[proglang.git] / examples / typeerror-scope
1 int a = readInt;
2
3 if (a > 5){
4         bool b = true;
5 }
6
7 print b;