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

[REBOL] Re: Curious output on console

From: sqlab:gmx at: 2-Nov-2006 16:34

Which version do you use. It looks as if you print beyond the end of your data. Maybe your memory is garbled. I guess you can simplify your script like this. foreach l2 b [ if all [ parse l2 [ to ".js" to end | to ".vbs" to end | to "\\" to end | to ".cmd" to end | to "psexec" to end | to "net use" to end | to "ftp " to end | to "psftp" to end ] not parse l2 [ to "d:\dwh" to end | to "rem" to end | to "echo" to end | to "db2cmd" to end | to "<p>" to end | to "run task for" ] ][ print ln ] I think, older versions of Rebol got problems with the memory allocation and the garbage collection, if you used to many anys and alls. Thorsten Moeller wrote: