about summary refs log tree commit diff
path: root/examples/6.5.src
blob: 9b8ee89fb37495d2b19319af72c3b3c3aff1101b (plain) (blame)
1
2
3
4
5
6
7
8
let main = () => {
	let x = 1;
	if x == 1 {
		x = 2 + 1;
		print(x);
	};
	return x;
};