faster, pussycat! kill! kill!

TeeJay on 2007-11-05T15:35:30

perl -e "use constant pussycat => 'pussycat'; sub faster { } ; faster(pussycat); kill kill;"

It's a bit lame, but it compiles

I'm sure it must be possible to get the original title of the film to compile (without source filters)


-M

brian_d_foy on 2007-11-05T22:13:31

perl -Mconstant=faster,pussycat -e 'kill, kill';
:)

Re:-M

TeeJay on 2007-11-06T08:41:35

neat!

That just leaves the bangs... must be possible.

Weeell...

phaylon on 2007-11-07T16:53:45

...does this count? :)

package OriginalTitle;
use strict;
use subs qw( kill );
sub faster   {}
sub pussycat {}
sub kill     {}

faster, pussycat! kill! kill!

1;