summaryrefslogtreecommitdiff
path: root/test/2g-fibonacci.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/2g-fibonacci.py
parent635360137c14d785ccbea17d4a93f49418c8ca69 (diff)
codegen while implemented, test added
Diffstat (limited to 'test/2g-fibonacci.py')
-rw-r--r--test/2g-fibonacci.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/2g-fibonacci.py b/test/2g-fibonacci.py
new file mode 100644
index 0000000..fb1ac9f
--- /dev/null
+++ b/test/2g-fibonacci.py
@@ -0,0 +1,13 @@
+n = 9
+
+a = 0
+b = 1
+c = 0
+i = 0
+while i < n - 2:
+ c = a + b
+ a = b
+ b = c
+ i = i + 1
+
+print(c)