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

[REBOL] Re: to-block bug?

From: atruter:hih:au at: 14-Aug-2002 10:12

> why a fails and b works
That should be "b" fails and "a" works. Note also that the following function works: to-blk: function [string] [blk] [ blk: copy [] foreach token parse string "" [append blk to-word token] return blk ]
>> c: to-blk "btn green"
== [btn green]
>> view layout c
Regards, Ashley