blob: 164c55d0e9fd3dab67faf2c2d68254a46e66cdab (
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"));
}
|