CS 245 - Programming Languages

Lab 10

Elixir -- your own linked list

Write, in Elixir, code to create and provide functionality for you own linked list implementation. You should write code to do the following: For example, if your code is in a module named MyLL then you might have the following interaction.
    a = MyLL.addHead("a", nil)
    b = MyLL.addHead("b", a)
    c = MyLL.addTail("c", b)
    MyLL.printList(b)
    b -> a
    MyLL.printList(c)
    b -> a -> c
    MyList.appendLists(c, b)
    b -> a -> c -> b -> a

What to hand in

Send all of your code to gtowell@brynmawr.edu