Updated with Shultz's new changes

This commit is contained in:
2018-10-22 12:38:06 -06:00
parent 0c712700cc
commit 3948b1c936
55 changed files with 92 additions and 122 deletions
Executable → Regular
+3 -2
View File
@@ -2,7 +2,7 @@ main()
def fact( n )
if lt(n 1)
if le(n, 1)
return 1
else
temp = fact( n-1 )
@@ -15,6 +15,7 @@ def main()
"enter n: "
n = input()
print( fact(n) )
print(n) "! = " print(fact(n)) nl()
return 0
end