[EMAIL PROTECTED] wrote:
> 
>         Say folks: I put up an article I wrote this weekend on using
> REBOL with the unix shell.  It's a part of some other domain specific
> REBOL materials I've been assembling.  Have a look and please feel
> free to send me any feedback you have.
> 
>     http://www.cs.unm.edu/~whip/rebol-unix-shell.html

3000 chars on your ~whip/index.html cute :)

REBOL [
  Title: "Count"
  Date: 12-Jun-2000
  Author: "Deryk Robosson"
  Email: [EMAIL PROTECTED]
  Purpose: {
    Count the width of Jeff's site.
  }
]

res: parse read http://www.cs.unm.edu/~whip/ "0"

i: 0
foreach result res [
  i: i + 1
]

print rejoin [i " chars wide."]

:)

Regards,
Deryk

Reply via email to