chore: update readme

This commit is contained in:
2021-06-26 04:13:54 +00:00
parent 214bd8eb42
commit 3e733ac45b
2 changed files with 11 additions and 7 deletions

View File

@@ -74,7 +74,7 @@ class _Operation:
@classmethod
def output(cls, _) -> None:
sys.stdout.write(chr(_Memory.buffer[_Memory.get_pointer()])) # TODO rollover if too big in ASCII
sys.stdout.write(chr(_Memory.buffer[_Memory.get_pointer()]))
sys.stdout.flush() # TODO possible performance issue
@classmethod