about summary refs log tree commit diff
path: root/examples/4.src
blob: b955155614ccb1d00b7dd95c0be33a97f2ce3b50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
let print_one = () => {
	print(1);
	return 4;
};

let main = () => {
	let y = print_one() + 2;

	print(y);

	return y;
};