README.md in kaiser-ruby-0.2.2 vs README.md in kaiser-ruby-0.2.3

- old
+ new

@@ -47,9 +47,25 @@ $ kaiser-ruby transpile ./examples/assignment.rock --save=a.rb Saved output in `a.rb` ``` +Another option is to run an interactive console (REPL): + +``` +$ kaiser-ruby rock --debug +Type 'exit' to exit the console. Otherwise, rock on! +\m/> Put "Hello San Francisco" into the message +\m/> the_message = "Hello San Francisco" + => Hello San Francisco +\m/> Scream the message +\m/> puts the_message +Hello San Francisco + => nil +\m/> exit +$ +``` + Finally, you can also transpile and immediately execute the code, like this: ``` $ kaiser-ruby execute ./examples/assignment.rock 15