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

[REBOL] Re: Confusion about foreach

From: rebolforces:gmai:l at: 14-Apr-2006 20:51

Also it is often better to use PROBE rather than PRINT for debugging. If you where using it instead of print above, the char! vs string! would have been more obvious. e.g
>> print [1 + 2]
3
>> probe [1 + 2]
[1 + 2] == [1 + 2]
>> a: "12345"
== "12345"
>> a/2
== #"2"
>> print a/2
2
>> probe a/2
#"2" == #"2" -- Allen K