Perl has a weird but cool operator, the “fat comma”, written as =>. It’s a comma, but with a special property that means a bareword on the left side is allowed. They’re often used for initializing hashes without having to quote every hash key.
The PBP suggests reserving => for items that go together, or, as it says “for pairs”. Name => value pairs, mostly. These things are related to each other and => makes that visible. (more…)