about summary refs log tree commit diff
path: root/examples/0.src
blob: db7a87f70b861d526fe7d34aabfcda19817f83f0 (plain) (blame)
1
2
3
4
5
6
7
8
/* HELLO! Welcome to the unnamed language */
extern printf = (*i64, varargs) => i64;

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