Skip to content

Instantly share code, notes, and snippets.

Created December 28, 2013 18:14
Show Gist options
  • Save anonymous/8162357 to your computer and use it in GitHub Desktop.
Save anonymous/8162357 to your computer and use it in GitHub Desktop.

Revisions

  1. @invalid-email-address Anonymous created this gist Dec 28, 2013.
    13 changes: 13 additions & 0 deletions foo.rs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    #[no_uv];

    extern mod native;

    #[start]
    fn start(argc: int, argv: **u8) -> int {
    do native::start(argc, argv) {
    main();
    }
    }


    fn main() {}