@ -5,7 +5,7 @@ A work-in-progress programming language.
```pork
/* fibonacci sequence */
func fib(n) {
if n < 2 {
return if n < 2 {
n
} else {
fib(n - 1) + fib(n - 2)
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.