mirror of
https://github.com/russolsen/rforth
synced 2024-12-25 09:58:16 +01:00
Added more info to the README
This commit is contained in:
parent
1eb65258c5
commit
1812c15dbc
2 changed files with 3 additions and 3 deletions
|
@ -16,3 +16,5 @@ A simple Forth interpreter in Ruby (1.9).
|
||||||
2 sq
|
2 sq
|
||||||
.
|
.
|
||||||
4
|
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).
|
||||||
|
|
|
@ -94,9 +94,7 @@ class RForth
|
||||||
end
|
end
|
||||||
|
|
||||||
@dictionary.word(name) do
|
@dictionary.word(name) do
|
||||||
blocks.each do |b|
|
blocks.each {|b| b.call}
|
||||||
b.call
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue