rustlings/ex3.rs
Carol (Nichols || Goulding) 12be375529 Create ex3.rs
2015-09-14 22:26:58 -04:00

9 lines
113 B
Rust

// Make me compile!
struct Foo {
capacity: i32,
}
fn main() {
println!("{:?}", Foo { capacity: 3 });
}