• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1function emptycompare(x, y) {
2    if (x > y);
3    return 1;
4}
5
6function emptyiftrue() {
7    if (true);
8    return 2;
9}
10
11print(emptycompare(2, 3));
12print(emptyiftrue());
13