Hi Shannon, From: "Shannon Fang" <xrfang / hotmail.com> > Hi all ruby gurus there, > > I suggest if some one can initiate a documentation project for ruby? I > would call it The Ruby Cipher Book, or Ruby Demystified. In this > document, all ruby symobs, prefixes suffixes are explained, with > reference to the chapter in the online manual... I'm expecting anyone would be in favor of various improvements to our online documentation. Perhaps if you begin such a document....? :) > I encountered a symbol I don't understand, may be simply I didn't read > the manual careful enough -- sorry. > > @@var={ } ?? > > I knew that [ ] is for array, but what is { }? The print version of Programming Ruby has a truly impressive and useful index. In it, you'll find: {...} hash literal 11, 206 in pattern 61, 209 see also Block Or.... never underestimate IRB: irb> {}.class Hash Aha! Regards, Bill