1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-24 04:16:19 +02:00
rustlings/ex3.rs

10 lines
113 B
Rust
Raw Normal View History

2015-09-14 22:26:58 -04:00
// Make me compile!
struct Foo {
capacity: i32,
}
fn main() {
println!("{:?}", Foo { capacity: 3 });
}