REBOL [
    Title: "Source"
    Date: 3-Jul-2002
    Name: Source
    Version: 1.0.0
    File: %Source.r
    Author: "Andrew Martin"
    Purpose: "Prints the script source code for a word."
    Email: Al.Bri@xtra.co.nz
    Web: http://valley.150m.com
    Category: [util script 1]
    Requires: [%Script.r]
]

Source: func [
    "Prints the script source code for a word."
    'Word [word!]
    ][
    print Script Word
    ]
                    