diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index af9056a..0dbb90b 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -67,6 +67,7 @@ def rewrite_file(path: str, content: str): def read_from_file_or_stdin(path: str) -> str: if path == "-": + print("Reading from STDIN...", flush=True) return "\n".join(stdin) elif exists(path): return read_file(path)