kill9/harmful/software/perl.md

1.6 KiB

Perl has shitty stuff

Perl functions parameters are funny

sub function 
{
	my ($x, $y) = @_;
	# do something with $x and $y
}

# why can't it be like this?

sub function(my $x, my $y) 
{
	# do something with $x and $y
}

use strict

really? it should be enabled by default. it shold be use unstrict instead

perl's logo is an onion

visiting code you wrote some weeks ago will make you cry.