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

[REBOL] Re: name of var passed to func

From: allenk:powerup:au at: 3-Dec-2000 10:29

If just want a quick debug function have you explored using the ?? function
>> a: 4
== 4
>> ?? a
== a: 4
>> b: "hello"
== "hello"
>> ?? b
b: "hello" Cheers Allen K