Skip to content

Commit

Permalink
Röda
Browse files Browse the repository at this point in the history
  • Loading branch information
ghluka committed Apr 2, 2024
1 parent 718f473 commit d51250d
Show file tree
Hide file tree
Showing 2 changed files with 11 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,7 +23,7 @@ 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 -->[66 total]
# 🌐 Languages <!-- Languages start -->[67 total]

- [05AB1E](./src/%23/05AB1E)
- [Ada](./src/A/Ada)
Expand Down Expand Up @@ -74,6 +74,7 @@ We welcome contributions, to see our rules and guidelines on contributing please
- [R](./src/R/R)
- [Ruby](./src/R/Ruby)
- [Rust](./src/R/Rust)
- [Röda](./src/R/R%C3%B6da)
- [Scala](./src/S/Scala)
- [Scratch](./src/S/Scratch)
- [Smalltalk](./src/S/Smalltalk)
Expand Down
9 changes: 9 additions & 0 deletions src/R/Röda/fibonacci.röd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
main {
a := 0
b := 1
seq 1, 10 | {
print a
b += a
a = b - a
} for _
}

0 comments on commit d51250d

Please sign in to comment.