perl

Installation
SKILL.md

Perl

Perl 5.40 (2024) introduced a native try/catch and the __CLASS__ keyword. It remains unbeatable for text processing one-liners.

When to Use

  • Text Processing: Regex engine is the gold standard.
  • Sysadmin: Legacy scripts on every Unix system.
  • Bioinformatics: Massive existing codebases (Bioperl).

Core Concepts

Sigils

$scalar, @array, %hash. Visual typing.

Context

Scalar vs List context. my $len = @arr (count) vs my. ($first) = @arr (element).

Related skills
Installs
1
GitHub Stars
7
First Seen
Feb 10, 2026