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

let main = (argc: i64) => i64 {
	printf("%d", argc);
	
	return 2;
};