Johns WordLists.java Demo Page

The following text was written to the standard output stream when the WordLists.java program was executed from IntelliJ.

	    
>>> help
HELP - display a menu of commands
DISPLAY - display the list of numbers
PRINT - print a number (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a number to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> display
the
big
bad
wolf
II
i
love
Yula
Guliv
II
is
it
real
>>> print 6
i
>>> swap 7 6
>>> add last hurt
>>> diplay
>>> display
the
big
bad
wolf
II
love
i
Yula
Guliv
II
is
it
real
hurt
>>> exit