From 6642844f2f7e011d5274829a42d6034e2d03c625 Mon Sep 17 00:00:00 2001 From: almenon Date: Tue, 12 Nov 2024 21:42:46 -0800 Subject: [PATCH] add infinite loop test --- test/manualAreplTests/infiniteloop.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/manualAreplTests/infiniteloop.py diff --git a/test/manualAreplTests/infiniteloop.py b/test/manualAreplTests/infiniteloop.py new file mode 100644 index 0000000..cdc34f8 --- /dev/null +++ b/test/manualAreplTests/infiniteloop.py @@ -0,0 +1,6 @@ +i = 0 +while i < 10: + # change to - to make infinite + # You should be able to change back and arepl will still work + i = i+1 + print(i)