diff options
| author | drbaggy <js5@sanger.ac.uk> | 2021-03-09 09:02:58 +0000 |
|---|---|---|
| committer | drbaggy <js5@sanger.ac.uk> | 2021-03-09 09:02:58 +0000 |
| commit | 1a2ae0c10cfa6ec2a8a750deb0efc0f6160cbb06 (patch) | |
| tree | 76fdd215633b8988d1ffcbac8b34e11ccf27894c | |
| parent | 75ce4e9ee0edfd4c3adbca1cc31a446e24181571 (diff) | |
| download | perlweeklychallenge-club-1a2ae0c10cfa6ec2a8a750deb0efc0f6160cbb06.tar.gz perlweeklychallenge-club-1a2ae0c10cfa6ec2a8a750deb0efc0f6160cbb06.tar.bz2 perlweeklychallenge-club-1a2ae0c10cfa6ec2a8a750deb0efc0f6160cbb06.zip | |
tidied up layout
| -rw-r--r-- | challenge-103/james-smith/perl/ch-1.pl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/challenge-103/james-smith/perl/ch-1.pl b/challenge-103/james-smith/perl/ch-1.pl index 9edd3c31bc..0d0382811f 100644 --- a/challenge-103/james-smith/perl/ch-1.pl +++ b/challenge-103/james-smith/perl/ch-1.pl @@ -13,11 +13,12 @@ is( year_name( 1938 ), 'Yang Earth Tiger' ); done_testing(); -## Choose the order based on what would happen in years "0","60" - this is "Yang Metal Monkey", -## so we make them the first entry in the list - saves us doing a "shift" to get the right -## modulus key.... +## Choose the order based on what would happen in years "0","60" - +## this is "Yang Metal Monkey", so we make them the first entry in +## the list - saves us doing a "shift" to get the right modulus key. -## We have added in the last "classifier" - Yang/Yin which split the element entry in two. +## We have added in the last "classifier" - Yang/Yin which split the +## element entry in two. sub year_name { return join q( ), |
