about summary refs log tree commit diff
path: root/examples/1.5.src
blob: 4391639ac8319cf710f7678a028745e6ed7f2ca9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern printf = (*i64, i64) => i64;

let x = () => i64 {
	printf("%d", 22);
	return 11;
};

let main = () => i64 {
	let i = 4;

	printf("%d", i);

	return x();
};