Create ex3.rs

This commit is contained in:
Carol (Nichols || Goulding) 2015-09-14 22:26:58 -04:00
parent f238bdc34e
commit 12be375529
1 changed files with 9 additions and 0 deletions

9
ex3.rs Normal file
View File

@ -0,0 +1,9 @@
// Make me compile!
struct Foo {
capacity: i32,
}
fn main() {
println!("{:?}", Foo { capacity: 3 });
}