From 12be3755296226d22930b73f3c5d90646db8e26e Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 14 Sep 2015 22:26:58 -0400 Subject: [PATCH] Create ex3.rs --- ex3.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ex3.rs diff --git a/ex3.rs b/ex3.rs new file mode 100644 index 0000000..242076f --- /dev/null +++ b/ex3.rs @@ -0,0 +1,9 @@ +// Make me compile! + +struct Foo { + capacity: i32, +} + +fn main() { + println!("{:?}", Foo { capacity: 3 }); +}