README.md in kaiser-ruby-0.2.3 vs README.md in kaiser-ruby-0.3.0
- old
+ new
@@ -1,10 +1,10 @@
# KaiserRuby - a Rockstar to Ruby transpiler
This tool translates a file containing a program written in the [Rockstar language](https://github.com/dylanbeattie/rockstar) to Ruby code.
-This is still a work in progress. For details on that, see the TODO.md file.
+This is still a work in progress, however most of the language implementation is already finished and working (as are the fibonacci sequence and fizzbuzz examples in the repository). For details on what is done, see the TODO.md and CHANGELOG.md files.
## Installation
Install the gem by issuing the following command.
@@ -69,9 +69,41 @@
```
$ kaiser-ruby execute ./examples/assignment.rock
15
+```
+
+Or even better, this:
+
+```
+$ kaiser-ruby execute ./examples/fibonacci.rock
+1
+1
+2
+3
+5
+8
+13
+21
+34
+55
+89
+144
+233
+377
+610
+987
+1597
+2584
+4181
+6765
+10946
+17711
+28657
+46368
+
+$
```
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/marcinruszkiewicz/kaiser-ruby.