From: Simon Krahnke Date: 2009-02-23T07:04:31+09:00 Subject: Re: literal syntax for array of arrays of strings * Joel VanderWerf (2009-02-19) schrieb: > Has anyone ever felt the need for something like > > a = %t{ > a b c > d e f > } # ==> [["a", "b", "c"], ["d", "e", "f"]] a = [ %w(a b c), %w(d e f) ] mfg, simon .... l