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

[REBOL] Newbie problem

From: kpeters:vu-ware at: 2-Feb-2005 12:04

Hi all, in my script below i would expect cururl to have a different value for each iteration. It does, however, retain its =A0value from the first iteration. I vaguely remember there being a newbie trap because of some Rebol feature but can't for the life of me not remember where .... Anyone can help me fix this script? Thanks in advance, Kai rebol[] cats: load %/c/farm/cats.csv baseurl: http://protect-the-innocent.net/recherches/standard.php?zyp_id=0&Zip_City=kelowna&Zip_Displayed=100&Zip_InClientsList=1 &Zip_Langue=en&Zip_Page=1&Zip_Produit=@&Zip_Scope=1&Zip_StartPoint=0&Zip_Source=1&Zip_Type=cat&laville=ke lowna&Zip_Prov=BC& foreach cat cats [ =A0 cururl: replace baseurl "@" cat =A0 fname: =A0join %/c/farm/level1/ cat ; print cururl =A0 write fname read cururl ]