Skip to content

Instantly share code, notes, and snippets.

@eamartin
Created March 25, 2013 00:59
Show Gist options
  • Save eamartin/5234288 to your computer and use it in GitHub Desktop.
Save eamartin/5234288 to your computer and use it in GitHub Desktop.
//module A
mod B;
mod C;
use B;
use C;
//module B
mod C;
use C;
//module C
extern mod std;
use std::list::*;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment