fix blank symbol

This commit is contained in:
Maxim Slipenko 2021-09-21 00:13:38 +03:00
parent c22de5ff8c
commit 39fe4e626b

View File

@ -38,7 +38,7 @@ def main():
for test in args.tests:
if args.empty_character:
test = test.replace(args.empty_character, 'λ')
test = test.replace(args.empty_character, program.blank_symbol)
tm = Emulator(program, test)