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

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to