Added more info to the README

This commit is contained in:
fogus 2010-09-09 14:41:53 -04:00
parent 1eb65258c5
commit 1812c15dbc
2 changed files with 3 additions and 3 deletions

View file

@ -16,3 +16,5 @@ A simple Forth interpreter in Ruby (1.9).
2 sq
.
4
This is based on a sweet hack by [Russ Olsen](http://jroller.com/rolsen/) presented to me in a [GoodReads comment](http://www.goodreads.com/review/show/120660311).

View file

@ -94,9 +94,7 @@ class RForth
end
@dictionary.word(name) do
blocks.each do |b|
b.call
end
blocks.each {|b| b.call}
end
end