in reply to How to (ab)use sort

$ perl -v|head -n2 This is perl 5, version 14, subversion 1 (v5.14.1) built for x86_64-li +nux $ perl obfu.pl Just another Perl hacker,Unknown warnings category 'CODE(0x1151998)' a +t obfu.pl line 6 BEGIN failed--compilation aborted at obfu.pl line 9.

(with a pretty long pause after Just another Perl hacker,).

Replies are listed 'Best First'.
Re^2: How to (ab)use sort
by choroba (Cardinal) on Apr 17, 2012 at 09:21 UTC
    Similar behaviour (plus a zero printed) in 5.10.1 for i486-linux-gnu-thread-multi.
      Thanks for the feedback :) Well, at least it prints what it's supposed to print before dying. s/use warnings/use warnings;@;=/ should fix this (both versions work with Strawberry, and the @;= version sounds less like an exploit).