David Gonzalez Martin 3074411608 Introduce file writer
2023-12-02 08:51:32 -06:00

7 lines
110 B
Plaintext

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