[EMAIL PROTECTED] a écrit :

> According to rebol documentation, the
> rebol header is an object.

  True ! It can be access by the system/script/header not by REBOL
object !!
 You need REBOL for filling values of the object system/script/header
only !
  try this :
 probe system/script/header

 and now try this
probe REBOL  ... to make sleep REBOL/core ;-) !

>
>
> If so, how does the rest of the script file
> access the header?
>
> Given the following code:
>
> REBOL
> [
>     Title: "Scan Web Sites"
>     Date:   12-Nov-1997
>     Author: ["Ema User" "Wasa Writer"]
> ]
>

Your example becomes :
header-script: system/script/header
print ["Title : " header-script/Title]
print ["Date : " header-script/Date]
foreach person header-script/Author [ print person ]

> what would be the correct syntax.
> Thanks
> Tim

Reply via email to