SuperStrict Framework Brl.LinkedList Import Brl.StandardIO ' create a list to hold some objects Local list:TList = New TList ' add some string objects to the end of the list list.AddLast("one") list.AddLast("two") list.AddLast("three") ' create another list containing the elements in reversed order Local list2:TList = list.Reversed() ' enumerate all the strings in the first list For Local a:String = EachIn list Print a Next ' enumerate all the strings in the second list For Local a:String = EachIn list2 Print a Next ' outputs: ' one ' two ' three ' three ' two ' one