in reply to Re: Tuesday Evening Code Quizin thread Tuesday Evening Code Quiz
%foo{@a} = reverse @a; #should be @foo{@a} [download]
A hash slice needs '@', otherwise this yields a syntax error (under version 5.6.1 at least).
@foo{@a} = reverse @a; [download]
MM