summary refs log tree commit diff
path: root/tests/pracownia4/pracownia3/022_if_eq_true.xi
blob: 4571f1be05cc4955c7314085c709d76509c34006 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
main():int
{
    x:int = 33;
    result:int = 99
    if (x == 33) {
        result = 100
    } 

    return result
}

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