about summary refs log tree commit diff
path: root/examples/14.src
blob: 88b898ea229c95b46f30d6cd7e628774c8690ef9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let main = () => i64 {
	let fn = () => () => i64 {
		return () => i64 {
			return 4;
		};
	};

	let x = fn();

	return x();
};