Skip to content

Instantly share code, notes, and snippets.

@onewheelskyward
Created January 14, 2015 19:57
Show Gist options
  • Save onewheelskyward/6039692a4065f7f1cd5c to your computer and use it in GitHub Desktop.
Save onewheelskyward/6039692a4065f7f1cd5c to your computer and use it in GitHub Desktop.
fn main() {
struct Inches(i32);
let length = Inches(10);
let Inches(integer_length) = length;
println!("length is {} inches", integer_length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment