This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extends RichTextLabel | |
| const HELP_COMMAND = "help" # Display all help commands | |
| const DIR_COMMAND = "dir" # Display all files and folders in current working directory | |
| const CHANGE_DIRECTORY_COMMAND = "cd" # Change working directory | |
| const QUIT_COMMAND = "exit" # Quit application | |
| const CLEAR_COMMAND = "clear" # Clear terminal windows | |
| var current_context : Context | |
| var past_commands = [] |