1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 12:22:35 +02:00
rustlings/ex3.rs

11 lines
123 B
Rust
Raw Normal View History

2018-02-22 07:09:53 +01:00
// ex3.rs
2015-09-15 04:26:58 +02:00
// Make me compile!
struct Foo {
capacity: i32,
}
fn main() {
println!("{:?}", Foo { capacity: 3 });
}