trpl-zh-cn/listings/ch08-common-collections/listing-08-09/src/main.rs

16 lines
304 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
2023-01-16 17:34:52 +08:00
enum SpreadsheetCell {
Int(i32),
Float(f64),
Text(String),
2022-02-06 16:43:51 +08:00
}
2023-01-16 17:34:52 +08:00
let row = vec![
SpreadsheetCell::Int(3),
SpreadsheetCell::Text(String::from("blue")),
SpreadsheetCell::Float(10.12),
];
2022-02-06 16:43:51 +08:00
// ANCHOR_END: here
}