5 lines
110 B
Text
5 lines
110 B
Text
use std::collections::LinkedList;
|
|
fn main() {
|
|
let mut list = LinkedList::new();
|
|
list.push_front(8);
|
|
}
|