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

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