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