# New Ticket Created by Paweł Pabian # Please include the string: [perl #114720] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=114720 >
In Star 2012.08 command line one-liners cannot start with '-' because command line parser thinks it is the beginning of next param. $ perl6 -e '-1' Option -e needs a value, but is followed by an option FYI It works in Perl5: $ perl -e '-1 == -1 ? print "OK": print "BAD";' OK