Rebol Programming/source
USAGE:
editSOURCE 'word
DESCRIPTION:
editPrints the source code for a word.
SOURCE is a function value.
ARGUMENTS
edit- word -- (Type: word)
SOURCE CODE
editsource: func [ "Prints the source code for a word." 'word [word!] ][ prin join word ": " if not value? word [print "undefined" exit] either any [native? get word op? get word action? get word] [ print ["native" mold third get word] ] [print mold get word] ]