hello_world/
hello_world.rs

1use syslib::*;
2
3pub fn main() {
4    write(Fd::stdout, "Hello, World!\n".as_bytes()).unwrap();
5}