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