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

[REBOL] Bug! - 'second on object containing ONE hash! has TWO hash! !! Re:

From: kgd03011:nifty:ne:jp at: 6-Oct-2000 12:36

Hi Andrew, Are you pulling our leg? Remember 'self ?
>> o: make object! [h: make hash! []] >> second o/self
== [ make object! [ h: make hash! [] ] make hash! []]
>> second o/self/self
== [ make object! [ h: make hash! [] ] make hash! []]
>> o/self/self/self/self/self/self/h
== make hash! [] This is with the non-experimental REBOL/Core. It's interesting that /View thinks it's necessary to put the ... indicating recursion when there's no recursion involved. Maybe THAT's a bug. Eric