This website works better with JavaScript.
Home
Explore
Help
Sign In
piumarta
/
javascrypt
mirror of
https://github.com/mtardy/javascrypt.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
1
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83
Commits
1
Branch
1.5 MiB
C
94.9%
Shell
3.2%
Makefile
1%
Dockerfile
0.9%
Tree:
3ee4fed8f3
master
v0.0.1
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from '3ee4fed8f3'
${ noResults }
javascrypt
/
test3.txt
8 lines
106 B
Raw
Blame
History
fun f(n) {
if (n < 2) {
return 1
} else {
return 1 + f(n-1) + f(n-2)
}
}
f(27)