about summary refs log tree commit diff
path: root/examples/1.src
blob: 6fef25a7b869707c2a57911a95a1b981b9bc97f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import "!stdlib.src";

let main = () => i64 {
	let s = "hello";

	printf("%s\n", s);

	return 0;
};

/*

Expected stdout:

hello

Expected return: 0

*/