Hello Again:
I want to be able to internally evaluate
rebol data types:
the following code : 

my-blk: ["one" "two" "three"]
print reform ["my-blk is a " type? my-blk]
  either equal? [type? proj-args] "block"
  [print "my-blk's type is block"]
  [print "my-blk's type is something else"]

; returns
my-blk is a block
my-blk's type is something else

; It appears that 
either equal? [type? proj-args] "block"
; evaluates as false.

How may I rewrite this code so that it evaluates
as true?

Thanks in advance
tim

Reply via email to