aboutsummaryrefslogtreecommitdiff
path: root/challenge-001/jo-37/perl/ch-2.pl
blob: c6fcb3e635e074c10c1bbd323bcd329decb54b6c (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use 5.012;
use strict;
use warnings;

say join ', ', map $_%15?$_%5?$_%3?$_:'fizz':'buzz':'fizzbuzz', 1 .. 20;