summary refs log tree commit diff
path: root/tests/pracownia4/pracownia3/039_ifelse_eq_true_ret.xi
blob: 70a6491675acce1d9a052e15ccce7ea3b7c6b13f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
main():int
{
    x:int = 33;
    if (x == 33) {
        return 100
    }  else {
        return 10
    }
    return 0
}

//@PRACOWNIA
//@out Exit code: 100