From ad2e7a8463d424f079b5b2464796f94d63cedfbf Mon Sep 17 00:00:00 2001 From: WahPlus Date: Sat, 25 Jul 2026 20:24:17 +0300 Subject: [PATCH] cerises: Made a thing so the test only runs if it...if it...if you run it --- cerises.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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