aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_if.in
blob: 20ed3a012d286e28330db2c226ea2c99ed7bc32b (plain)
1
2
3
4
5
6
7
8
9
10
11
        #include <stdio.h>
        int main()
        {
          int x = 5;
          if (x > 3) {
            printf("*yes*\n");
          }
          return 0;
        }