about summary refs log tree commit diff
path: root/examples/6.5.src
blob: 53abd8652a1070c9bd74faf926fd07f344dccc32 (plain) (blame)
1
2
3
4
5
6
7
let main = () => i64 {
	let x = !(1 == 1);
	if !x {
		printb(x);
	};
	return 0;
};