Posts Tagged With 'perl'

Creeping Perlism

Written by Tracy Poff in misc on Mon 14 December 2015. Tags: perl,

After many hours of perl programming, my fears are realized: I find myself wanting to do things in python as I might do them in perl…

if ((my $count = scalar(@$rows)) > 50)
{
    # do some stuff...
}

It’s just so convenient