Re: More quoting issues

2005-04-16 Thread Autrijus Tang
On Sun, Apr 17, 2005 at 03:33:26AM +0300, Roie Marianer wrote: > I tried to look into things, and it seems that <1 2> acting like a > scalar when it's inside a hash subscript, but nowhere else; when I > forced the final parameter of doFetch to be False (Eval.hs line 402) I > got the correct result.

More quoting issues

2005-04-16 Thread Roie Marianer
OK, so I'm getting close to having everything work (<<>> gave me a hard time, but I tamed it in the end). I noticed something weird about the <> construct: pugs> %a (('1' => 'a'), ('1 2' => 'both'), ('2' => 'b')) pugs> %a{<1 2>} 'both' pugs> %a{1,2} ('a', 'b') pugs> %a{<1 2>,()} ('a', 'b') I tri