David Gonzalez Martin 06f9fe3597 Hello world array
2024-06-16 19:21:12 -05:00

7 lines
211 B
Plaintext

fn [cc(.c)] write[extern](file_descriptor: s32, byte_pointer: *u8, byte_count: u64) s64;
fn [cc(.c)] main[export]() s32 {
>arr: [4]u8 = ['H', 'i', '!', '\n'];
write(1, arr&, arr.length);
return 0;
}