REBOL [
    Title: "Data Directions"
    File:  %directions.r
    Date:  9-May-1999
    Purpose: {
        Illustrates the data descriptive capabilities of
        REBOL -- Gives the road directions to the REBOL office
        from San Francisco. Readable by humans and by REBOL.
    }
    Category: [misc script 1]
]

To-New-Office: [
    [take "Freeway 101" north]
    [go north 109 miles]
    [turn left at "Gobbi Street"]
    [go west .5 miles]
    [turn right at "State Street"]
    [go north .5 miles]
    [turn right at "301 S. State Street"]
    [park anywhere]
]