reid-llvm/reid_src/std.reid

8 lines
96 B
Plaintext

extern fn puts(message: string) -> i32;
pub fn print(message: string) {
puts(message);
}