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