Capture user input and display it on the screen. The user will be able to delete their typing with backspace, store it with enter, and manipulate it with keywords.
Create a program that displays the letters that you type. Also, if you press the Backspace key, it will delete the last letter input.
If the user presses the ENTER key, the current text input will be stored on the screen. Up to three lines may be stored at any given time. If a fourth line is stored, the first line disappears.
If the user types in a certain keyword, it will change the display.
[sub]string_theory.zip
Key: https://processing.org/reference/key.html // Also look at the related section for keyPressed and keyCode
String: https://processing.org/reference/String.html // Look at the methods section for substring, length, and equals