aboutsummaryrefslogtreecommitdiffstats
path: root/test/conditional.c
blob: 041e55bddd0ed1496151c45e7449cdacde760b4f (plain)
1
2
3
4
5
6
7
int main() {
    int x = 2;
    if (x > 1)
        return 5;
    else
        return 2;
}