Add GEMS-Export

This commit is contained in:
2025-04-22 16:05:37 +02:00
parent 970f63f1f1
commit d6549a95fa
7 changed files with 95 additions and 19 deletions
+8
View File
@@ -0,0 +1,8 @@
# fibonacci
def fib(n):
if n <= 1:
return n
else:
return fib(n-1) + fib(n-2)
print(fib(1))