David Gonzalez Martin 4acf1c36f1 add named arguments
2023-11-21 10:44:36 -06:00

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;
}