Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 395 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 395 Bytes

Day 7: Perl

Previous Experiences

I had no previous experiences with Perl but I'm pretty familiar with PHP and Python.

Notes

Perl is ... weird. It really feels like a weird combination between mostly PHP and a bit of Python.

Some tasks can be formulated extremely short, but the syntax is often extremely obscure. E.g. reading from a file handle FH:

my $line = <FH>;