blob: d85fe34a9d5d403c425d9ad0221ba37d54e0c92f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import "!stdlib.src";
let main = () => i64 {
let x = !(1 == 1);
if !x {
println("Condition");
};
return 0;
};
/*
Expected stdout:
Condition
Expected return: 0
*/
|