Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: headers

From: greggirwin:mindspring at: 26-May-2002 11:44

Hi Jason, << Q2: How do access headers within another REBOL script? >> You need to LOAD it AFAIK. You can use the /header refinement and then the header will be the first value. scr: load/header %test.r hdr: scr/1 You could also use the /all refinement and then make the header object yourself. scr: load/allest.r hdr: make object! scr/rebol Maybe someone else has a better way. --Gregg