summary refs log tree commit diff
path: root/tests/pracownia4/pracownia3/036_multireturn_3.xi
blob: f8190a8d7ebca396955b294eeefe6acebf87937d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
f(): int, int, int
{
    return 10, 15, 20
}

main():int {
    x:int, y:int, z:int = f()
    return x + y + z;
}

//@PRACOWNIA
//@out Exit code: 45