You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 19, 2013
·
1 revision
USAGE
SOURCE 'word
DESCRIPTION
Prints the source code for a word.
SOURCE is a function value.
ARGUMENTS
word (word! path!)
#SOURCE
source: make function! [ [
"Prints the source code for a word."
'word [word! path!]
][
if not value? word [print [word "undefined"] exit]
print head insert mold get word reduce [word ": "]
exit
] ]