Implemented a text editor-based console.

- Use design pattern Singletone.
- The "test.txt" file will be loaded when the program starts. Next, print the first page.
- Maximum 20 lines, 75 byte(including spaces) per a page.
- The user enters the action to perform at the "입력" prompt. (The factors are separated by commas.)
- Spaces in parentheses treated as input errors.
- (콘솔메시지) displays a message about the exception situation for each input.
- The output of each line is adjusted according to the results of the insert, delete, and change operations.
- Except for keyword 't', It is re-printed after working according to user input.
- For 'p' and 'n', which are functions of turning pages, move the 20 line to the maximum unit. If there are two lines left to output, add two new lines to the current 18 lines (line number 3-20) and output them to the screen.
- Error handling: I tried to prevent programs from terminating abnormally due to user input.
- n: next page
- p: previous page
- i: insert word
- d: delete word
- c: change word
- s: search word
- t: exit program after save file







