fix empty character
This commit is contained in:
parent
71a916c922
commit
4875005153
@ -32,7 +32,9 @@ def main():
|
|||||||
test_data = []
|
test_data = []
|
||||||
|
|
||||||
for test in args.tests:
|
for test in args.tests:
|
||||||
test = test.replace(args.empty_character, 'λ')
|
|
||||||
|
if args.empty_character:
|
||||||
|
test = test.replace(args.empty_character, 'λ')
|
||||||
|
|
||||||
tm = Emulator(program, test)
|
tm = Emulator(program, test)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user