‹call›‹call›<called>

This commit is contained in:
AF 2021-07-26 19:24:02 +03:00
parent f317ccb8d5
commit 5c597ce1f9

View File

@ -14,7 +14,7 @@ def transply(source: str) -> bytes:
pass
elif c in '/':
b.write(bytes([CODE_CALL]))
elif c in '{':
elif c in '{':
b.write(bytes([CODE_CALL, CODE_QOPN]))
elif c in '(':
b.write(bytes([CODE_MAKE]))
@ -34,7 +34,7 @@ def transply(source: str) -> bytes:
b.write(bytes([CODE_QUOT]))
elif c in '<':
b.write(bytes([CODE_QOPN]))
elif c in '>':
elif c in '>':
b.write(bytes([CODE_QCLS]))
else:
value = c.encode()