about summary refs log tree commit diff
path: root/examples/6.5.src
blob: f7d62295de89060e63d15c00db03af87bb6ae513 (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 {
		printf("Condition\n");
	};
	return 0;
};

/*

Expected stdout:

Condition

Expected return: 0

*/