]> ruin.nu Git - proglang.git/blob - examples/typeerror-scope
d35bd74f261eee99e860a0fcab23dfd1a757fb4d
[proglang.git] / examples / typeerror-scope
1 int a = readInt;
2
3 if (a > 5){
4         bool b = true;
5 }
6
7 print b;