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

[REBOL] Curious results

From: being_doug:yah:oo at: 29-Jul-2001 17:27

Here are 2 short scripts, almost identical, but with different results, and which raise questions of their own. Only the order of display changes. 1. Why does 'view lay' show 'Problem!' inside each box? ;example 1 REBOL [Title: "Problem!"] lay: layout [ across b: box red c: box green] view b view c view lay 2. What happens to red and green for b and c? ;example 2 REBOL [Title: "Problem!"] lay: layout [ across b: box red c: box green] view lay view b view c (I ran these on Win98) -- doug edmunds