7 lines
130 B
Plaintext
7 lines
130 B
Plaintext
const std = #import("std");
|
|
|
|
const main = fn() s32 {
|
|
std.print(bytes_ptr = "Hello world!\n", bytes_len = 13);
|
|
return 0;
|
|
}
|