Skip to content

Instantly share code, notes, and snippets.

@zlsa
Created May 8, 2016 00:04
Show Gist options
  • Save zlsa/4bf702ef1078b02962232b98df3f9922 to your computer and use it in GitHub Desktop.
Save zlsa/4bf702ef1078b02962232b98df3f9922 to your computer and use it in GitHub Desktop.
pub struct Vehicle {
id: i32
}
pub struct Simulation {
time: f64,
vehicles: Vec<Vehicle>
}
pub fn foo() {
print!("foo\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment