about summary refs log tree commit diff
path: root/examples/0.src
blob: 29a5c85a85fd8cdad95e7fa65d1e9bbde8bb2653 (plain) (blame)
1
2
3
4
5
6
7
/* HELLO! Welcome to the unnamed language */

let main = () => i64 {
	print(18);
	
	return 2;
};