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

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