inital commit

This commit is contained in:
nora 2021-08-06 18:44:38 +02:00
commit 69162b5b5a
10 changed files with 72 additions and 0 deletions

1
src/lib.rs Normal file
View file

@ -0,0 +1 @@
pub mod linked_list;

9
src/linked_list.rs Normal file
View file

@ -0,0 +1,9 @@
pub struct LinkedList {}
pub struct Node<T> {
value: T,
next: *const Node<T>,
prev: *const Node<T>,
}