blob: 92a127e8cccfa941da41b07e7cea14712dfc4a44 (
plain)
1
2
3
4
5
6
7
8
9
|
//@ run-pass
pub fn main() {
libc.puts(rustrt.str_buf("hello, extern world 1"));
libc.puts(rustrt.str_buf("hello, extern world 2"));
libc.puts(rustrt.str_buf("hello, extern world 3"));
}
|