blob: eac66adb58a0a623fa67e041f73f0af71c1d9031 (
plain)
1
2
3
4
5
6
7
8
9
|
// -*- rust -*-
fn main() {
libc.puts(rustrt.str_buf("hello, native world 1"));
libc.puts(rustrt.str_buf("hello, native world 2"));
libc.puts(rustrt.str_buf("hello, native world 3"));
}
|