CS1 Standard Demo Page The following text was written to the standard output stream when the TheWordList.java program was executed from IntelliJ.
>>> help
HELP - display a menu of commands
DISPLAY - display the list of words
PRINT - print a word (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a word to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> display
Pokemon
Brionne
Shiftry
Lairon
Kecleon
Vanilluxe
Ditto
Manaphy
Staravia
Gyarados
Pidgey
Eevee
>>> print first
Pokemon
>>> print last
Eevee
>>> print 3
Shiftry
>>> print 8
Manaphy
>>> swap 5 7 
>>> display
Pokemon
Brionne
Shiftry
Lairon
Ditto
Vanilluxe
Kecleon
Manaphy
Staravia
Gyarados
Pidgey
Eevee
>>> swap 1 8
>>> display
Manaphy
Brionne
Shiftry
Lairon
Ditto
Vanilluxe
Kecleon
Pokemon
Staravia
Gyarados
Pidgey
Eevee
>>> help
HELP - display a menu of commands
DISPLAY - display the list of words
PRINT - print a word (FIRST;LAST;nth)
SWAP - exchange two elements (nth;mth)
ADD - add a word to the list (FIRST;LAST)
EXIT - terminate execution of the program
>>> add first Mew
>>> add last Mewtwo
>>> shownumbers
### Unrecognizable command: shownumbers
>>> display
Mew
Manaphy
Brionne
Shiftry
Lairon
Ditto
Vanilluxe
Kecleon
Pokemon
Staravia
Gyarados
Pidgey
Eevee
Mewtwo
>>> exit