A solution to a recent problem

X

Xaonon

#!/usr/bin/perl

use TheInternet;

foreach $luser ( @INTERNET )
{
if( $luser->is_an_idiot and $luser->has_SoBig )
{
$evidence = murder $luser;
hide $evidence;
}
}

print "Internet now safe!\n";
exit;


Note that this will eliminate all offenders, since is_an_idiot is a logical
prerequisite for has_SoBig.
 
T

Tassilo v. Parseval

Also sprach Xaonon:
#!/usr/bin/perl

use TheInternet;

foreach $luser ( @INTERNET )
{
if( $luser->is_an_idiot and $luser->has_SoBig )
{
$evidence = murder $luser;
hide $evidence;
}

If you commit the murder in void context, you leave no marks and hence
no evidence either:

{
murder $luser;
}

In case of planned capital crimes, it's always wise to use lexical
variables that are limited to the smallest possible scope. That way,
evidence cleans up itself.

But nonetheless attention should be payed to modern investigation
techniques such as caller() or some pad-walker. These can really spoil
the fun of a well-planned murder.

:)

Tassilo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top