in reply to perl -n seemingly eating a line of input

TIMTOWTDI! (just move trailing newline to beginning of string) xD
echo -e '\n55\n44\n33\n22\n11' | perl -ne'@a = <>; END{ print @a; }'