I'm not sure I fully understand how to use the LinkedList class provided with SmallTalk Visual Works. I am able to create an instance of the class by simple doing:
myList := LinkedList new.
But how do I add a node. I tried creating an instance of Link class and setting a value but it doesn't seem to be working.
myLink := Link new.
myLink value: 3.
I am extremely new to smalltalk and any help would be greatly appreciated!