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

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

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

	return 0;
};

/*

Expected stdout:

hello

Expected return: 0

*/