blob: fa7c7e772ca31c972d1fb2248324512b22004743 (
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";
println("%s", s);
return 0;
};
/*
Expected stdout:
hello
Expected return: 0
*/
|