diff --git a/cerises.py b/cerises.py index 75fc6c8..457587a 100644 --- a/cerises.py +++ b/cerises.py @@ -28,4 +28,5 @@ def process(text: str, wrap_width: int = None) -> str: return "\n".join(lines) -# print(process("# Hello Guys 123\nThis is a cool Markdown file. Isn't it so cool?\n```\nThis is a code block\n# This is a code comment, not a heading!\n```", wrap_width=16)) \ No newline at end of file +if __name__ == "__main__": + print(process("# Hello Guys 123\nThis is a cool Markdown file. Isn't it so cool?\n```\nThis is a code block\n# This is a code comment, not a heading!\n```", wrap_width=16)) \ No newline at end of file