Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!helios!bcm!dimacs.rutgers.edu!seismo!uunet!brunix!jsb From: jsb@cs.brown.edu (John Bazik) Newsgroups: comp.lang.perl Subject: Input Op Bug? Message-ID: <66723@brunix.UUCP> Date: 28 Feb 91 22:08:32 GMT Sender: news@brunix.UUCP Reply-To: jsb@cs.brown.edu (John Bazik) Organization: Brown University Department of Computer Science Lines: 27 This: %foo=(a,A); open(A, "date|"); @t=<$foo{a}>; print $t[0], "\n"; Yields this: AD But this: %foo=(a,A); open(A, "date|"); $t=$foo{a}; @t=<$t>; print $t[0], "\n"; Yields this: Thu Feb 28 17:01:25 EST 1991 So, assoc array ref's don't work in angle brackets? Or did I goof? I'm at pl41. John Bazik jsb@cs.brown.edu