REBOL [
    Title: "Web Page Title Extractor"
    File:  %webtitle.r
    Date:  20-May-1999
    Purpose: "Find the title of a web page and display it."
    Category: [web net text 2] 
]

page: read http://www.rebol.com
parse page [thru <title> copy title to </title>]
print title