5 lines
144 B
Text
5 lines
144 B
Text
use std::collections::LinkedList;
|
|
fn main() {
|
|
// Doubly linked list containing 32-bit integers
|
|
let list = LinkedList::<i32>::new();
|
|
}
|