summaryrefslogblamecommitdiff
path: root/apps/examples/bas/tests/test07.bas
blob: 12c0cbdc7fbeca9d6beda0935be6a56fa573b0e0 (plain) (tree)
1
2
3
4
5



                                      
 
10 def fna(x)
20   if x=0 then r=1 else r=x*fna(x-1)
30 =r
40 print fna(7)