mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-26 00:28:47 +00:00
Better value control
This commit is contained in:
parent
d8ddf25a7f
commit
9bec185603
14 changed files with 147 additions and 100 deletions
|
|
@ -2,7 +2,7 @@ fun fact (n) {
|
|||
if n <= 1
|
||||
then return 1
|
||||
else
|
||||
return n * fact (n-1)
|
||||
return (n * fact (n-1))
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue