Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
omaraflak committed Aug 28, 2023
1 parent 1a6a523 commit 9887038
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,8 @@ make

Run program:

`fibonacci.na`
```
long fib(long n) {
if (n == 1 or n == 2) {
return n;
}
return fib(n - 1) + fib(n - 2);
}
print fib(10);
```

```
./banana -i fibonacci.na
./banana -i <source.na>
```

# Features
Expand Down

0 comments on commit 9887038

Please sign in to comment.