1
0

bytebeat_compiler.py: comment: enclose the word "return" in backticks

This commit is contained in:
パチュリー・ノーレッジ 2024-04-14 12:30:44 +03:00
parent 8e698c9f3b
commit 697a4e8408
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -148,7 +148,7 @@ if __name__ == "__main__":
# - Compilation # - Compilation
makedirs(PATHS["build_dir"], exist_ok=True) makedirs(PATHS["build_dir"], exist_ok=True)
if not args.no_return: # Insert return statement if not args.no_return: # Insert `return` statement
# XXX: The bytebeat code is enclosed in parentheses to allow for the # XXX: The bytebeat code is enclosed in parentheses to allow for the
# use of commas as a comma operator, enabling more formulas to function. # use of commas as a comma operator, enabling more formulas to function.
bytebeat_contents = f"return ({bytebeat_contents})" bytebeat_contents = f"return ({bytebeat_contents})"