From 1a2ae0c10cfa6ec2a8a750deb0efc0f6160cbb06 Mon Sep 17 00:00:00 2001 From: drbaggy Date: Tue, 9 Mar 2021 09:02:58 +0000 Subject: tidied up layout --- challenge-103/james-smith/perl/ch-1.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'challenge-103') 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( ), -- cgit