diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 0431de7..873c73e 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -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})"