blob: 74e640010d70da21f426393ff9eaad3b09c4992e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import "!stdlib.src";
let main = () => i64 {
let test = 1922;
let uwu = test;
println("%d", uwu);
return 0;
};
/*
Expected stdout:
1922
Expected return: 0
*/
|