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

[REBOL] Re: bug? (Of course not)

From: hallvard::ystad::helpinhand::com at: 20-Sep-2001 13:36

OK, got it:
>> print dummy
11
>> source dummy
dummy: func [][ return-value: "11" append return-value "1" return-value ]
>> print dummy
111
>> source dummy
dummy: func [][ return-value: "111" append return-value "1" return-value ]
>>
Sorry to bother you all with it. But how do I avoid this? I have tried defining return-value as /local, but with no success. ~H Du skrev (Thursday 20.09.2001, kl. 13.26):