[REBOL] Re: Looking over the horizon - Rebol 3
From: Steven:White:ci:bloomington:mn:us at: 12-Nov-2003 8:18
I see that I have a long way to go to reach REBOL mastery.
>>> [greggirwin--mindspring--com] 11/10/03 03:12PM >>>
Hi Steven,
What Ingo suggested should work for you. See below.
-- Gregg
REBOL []
mark-my-words: context [
init: does [query/clear system/words]
dump: does [
print ['Word tab 'Type tab 'Value]
foreach word query system/words [
print [word tab type? get word tab mold get word]
]
]
]
mark-my-words/init
; <your code here>
o: make object! [a: b: c: none]
my-int: 23
I-have-issues: #this-is-my-biggest-issue
fn: does [print "some fun now!"]
mark-my-words/dump