InternBootcamp/internbootcamp/libs/futoshiki/log.py
2025-05-23 15:27:15 +08:00

9 lines
No EOL
182 B
Python
Executable file

class output_log:
def __init__(self):
self.output_str = ""
def log(self,text):
self.output_str += text
def get_log(self):
return self.output_str