Skip to content

Commit

Permalink
Brat
Browse files Browse the repository at this point in the history
  • Loading branch information
ghluka committed Jun 21, 2024
1 parent 36a3cc9 commit 3546e41
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ Excerpt from [Wikipedia](https://en.wikipedia.org/wiki/Fibonacci_sequence):

We welcome contributions, to see our rules and guidelines on contributing please read [CONTRIBUTING.md](CONTRIBUTING.md)

# 🌐 Languages <!-- Languages start -->[68 total]
# 🌐 Languages <!-- Languages start -->[69 total]

- [05AB1E](./src/%23/05AB1E)
- [Ada](./src/A/Ada)
- [AutoHotkey](./src/A/AutoHotkey)
- [Bash](./src/B/Bash)
- [BeanShell](./src/B/BeanShell)
- [Brat](./src/B/Brat)
- [C](./src/C/C)
- [C#](./src/C/C%23)
- [C++](./src/C/C%2B%2B)
Expand Down
8 changes: 8 additions & 0 deletions src/B/Brat/fibonacci.brat
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
a = 0
b = 1

1.to 10 { n |
p a
b = b + a
a = b - a
}

0 comments on commit 3546e41

Please sign in to comment.