blob: 492f1798ce5142d7bb13505410cffc93449a4a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use fmt;
export fn main() void = {
fmt::println("Hello world!")!;
let a: u64 = 123;
};
@test fn testWtf() void = {
assert(1 == 0, "Failed");
fmt::println("Test wtf")!;
};
|