about summary refs log tree commit diff
path: root/examples/6.5.src
blob: fac11da5a34ec4eb63a3fd8bef3fe9a674de802c (plain) (blame)
1
2
3
4
5
6
7
8
9
extern printf = (*i64, i64) => i64;

let main = () => i64 {
	let x = !(1 == 1);
	if !x {
		printf("%d", x);
	};
	return 0;
};