📄 first.rs
/home/palash/git/misc/rust/tml/src/first.rs
Language: rs • Lines: 4
pub enum List {
    Empty,
    Elem(i32, Box<List>)
}