I'm trying to iterate through a linked list without using EachIn:
Global lst:TList=New TList Global tl:TLink lst.addlast "i" lst.addlast "hate" lst.addlast "crazy" lst.addlast "frog!" tl=lst.firstlink() While tl<>Null Print String(tl.value) tl=tl.nextlink() WendWhat I'm not clear about is how to retrieve the string contained in each entry. Any solutions?