aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/native-src/native.rs
blob: 2a5966c8acd294511f230e941b3a7caae6a1e5e9 (plain) (blame)
1
2
3
4
5
6
7
// -*- 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"));
}