]> ruin.nu Git - proglang.git/blob - examples/if
moved comments to examples
[proglang.git] / examples / if
1 /*
2 tests if and if/else
3 */
4 if (readBool) {
5   if (readInt < 0)
6     print true;
7   else
8     print false;
9 }