secretproject/editor.py

13 lines
290 B
Python
Raw Normal View History

2024-06-30 18:08:02 +02:00
class Editor:
content: str = ''
print_func: function
def __init__(self, print_func: function=print):
self.print_func = print_func
pass
def add_character(self, char: str):
self.print_func(char)
def backspace(self):
self.print_func('^H')