This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
ethminer
mirror of
https://github.com/lukechilds/ethminer.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
4552
Commits
3
Branches
10
Tags
52 MiB
C++
72.9%
C
15.4%
Cuda
6.8%
CMake
4.6%
Shell
0.3%
Tree:
4570e9368c
ethminer
/
evmjit
/
evmcc
/
test
/
jump
/
fib1.ethel
6 lines
81 B
Raw
Blame
History
let fib n =
if n < 3 then 1
else fib (n-1) + fib (n-2)
return fib 10
Reference in new issue