[prev] 74 [next]

showLL(L):
|  Input linked list L
|
|  if L≠NULL do
|     print L.value
|     showLL(L.next)
|  end if