Skip to content

Commit

Permalink
MoonScript
Browse files Browse the repository at this point in the history
  • Loading branch information
ghluka committed Mar 30, 2024
1 parent 02e7110 commit a7005ed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Excerpt from [Wikipedia](https://en.wikipedia.org/wiki/Fibonacci_sequence):
- [leachim6/hello-world](https://github.com/leachim6/hello-world)
- [zenware/FizzBuzz](https://github.com/zenware/FizzBuzz)
- [clarkzjw/one-two-three...infinity](https://github.com/clarkzjw/one-two-three...infinity)
- [H4ckerxx44/h](https://github.com/H4ckerxx44/h)

## 📥 Contributing

Expand Down
6 changes: 6 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 📃 To-Do List

- [ ] Scheme
- [ ] Shakespeare
- [ ] Snap
- [ ] Gleam
6 changes: 6 additions & 0 deletions src/M/MoonScript/fibonacci.moon
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
a = 0
b = 1
for _ = 1, 10, 1
print a
b += a
a = b - a

0 comments on commit a7005ed

Please sign in to comment.