nativesys 0.2.3

The Native Systems Rust namespace
Documentation
1
2
3
4
5
6
7
8
use nsys;

fn main() {
  println!("nativesys example main...");
  let p = nsys::math::Point2::new (1, 0);
  nsys::show!(p);
  println!("...nativesys example main");
}