summaryrefslogtreecommitdiff
path: root/test/2f.py
diff options
context:
space:
mode:
authorgeno <gabriele.genovese2@studio.unibo.it>2024-07-18 12:16:40 +0200
committergeno <gabriele.genovese2@studio.unibo.it>2024-07-18 12:16:40 +0200
commit31ee062ad12adcf6dae6716cb566fcbcde9f6959 (patch)
tree2fdc2b1b8ee39269bb1308cbff12f9e60630ee02 /test/2f.py
parent635360137c14d785ccbea17d4a93f49418c8ca69 (diff)
codegen while implemented, test added
Diffstat (limited to 'test/2f.py')
-rw-r--r--test/2f.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/2f.py b/test/2f.py
index d83457b..fa71493 100644
--- a/test/2f.py
+++ b/test/2f.py
@@ -3,8 +3,8 @@ n = 6
counter = 1
result = 1
-while n - 1 == counter:
+while n - 1 != counter:
result = result * counter
- counter = counter - 1
+ counter = counter + 1
print(result)