add function calling

This commit is contained in:
William Bell
2025-08-04 23:31:25 +01:00
parent 6c05eff6a4
commit a8acafffe9
13 changed files with 177 additions and 2185037 deletions

4
app.py Normal file
View File

@@ -0,0 +1,4 @@
def factorial(x):
if x==1: return 1
return factorial(x-1) + x
factorial(10000)