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

[REBOL] Combining a word and a value in one argument Re:

From: jsc:dataheaven at: 27-Sep-2000 5:25

Why not simply: tst: func [w [word!]] [ print rejoin [w ": " get w] ]
>> var: 4
== 4
>> tst 'var
var: 4 On Wed, 27 Sep 2000, you wrote: