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

This commit is contained in:
Intel A80486DX2-66 2024-04-14 12:30:44 +03:00
parent 8e698c9f3b
commit 697a4e8408
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ if __name__ == "__main__":
# - Compilation
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
# use of commas as a comma operator, enabling more formulas to function.
bytebeat_contents = f"return ({bytebeat_contents})"