Foreign function interface — direct bindings to C standard library functions.
Calls C's printf with the given format string. Returns the number of characters printed.
Calls C's puts to write a string followed by a newline. Returns a non-negative value on success.
load std.ffi
ffi.print_format("Hello %s\n", "world")
ffi.write_line("Hello, world!")