Open
Description
Implementing linked list with its operations.
first ---> returns the first element in the list
rest --> return the list without the first element
insert --> add an element to an index or last
check whether an element is in the list
length --> return the length of the list
delete--> delete an element in the list
This can be implemented in any programming language.