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

[REBOL] Re: earth demo

From: james:mustard at: 12-Mar-2003 11:21

Hi Bryan, Regarding: { When i try and run it I get ** Script Error: as-pair has no value ** Where: context ** Near: boxsize: as-pair 2 * radius0 } You can easily add the functionality into older view versions with the following: as-pair: func [ "Combine X and Y values into a pair." x [number!] y [number!] ][ to-pair reduce [to-integer x to-integer y] ] James.