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