REBOL [
    Title: "Download Multiple Pages"
    File:  %webgetter.r
    Date:  20-May-1999
    Purpose: {Fetch several web pages and save them as local files.}
    Category: [web file net 1] 
]

site: http://www.rebol.com

files: [
    %index.html
    %company.html
    %support.html
]

foreach file files [write file read site/:file]