| 1 #################################################################### |
1 #################################################################### |
| 2 # Immutable linked lists (different from the mutable lists of |
2 # Immutable linked lists (different from the mutable lists of |
| 3 # https://github.com/ChrisRackauckas/LinkedLists.jl) |
3 # https://github.com/ChrisRackauckas/LinkedLists.jl) |
| 4 #################################################################### |
4 #################################################################### |
| |
5 |
| |
6 __precompile__() |
| 5 |
7 |
| 6 module LinkedLists |
8 module LinkedLists |
| 7 |
9 |
| 8 using DelimitedFiles |
10 using DelimitedFiles |
| 9 |
11 |