aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus "Holli" Holzer <holli.holzer@gmail.com>2020-03-23 19:56:27 +0100
committerMarkus "Holli" Holzer <holli.holzer@gmail.com>2020-03-23 19:56:27 +0100
commit43fc25061823b8be50afddb31efc35556a52ff5c (patch)
treeddb895454a10827b26fc0aceb32dd2b3fd1cd1cb
parent2b48eb1b99c30c62d7c3b5e4113ae7cf0cbaf821 (diff)
downloadperlweeklychallenge-club-43fc25061823b8be50afddb31efc35556a52ff5c.tar.gz
perlweeklychallenge-club-43fc25061823b8be50afddb31efc35556a52ff5c.tar.bz2
perlweeklychallenge-club-43fc25061823b8be50afddb31efc35556a52ff5c.zip
improvities
-rw-r--r--challenge-053/markus-holzer/raku/ch-1.p62
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-053/markus-holzer/raku/ch-1.p6 b/challenge-053/markus-holzer/raku/ch-1.p6
index b9998bf735..1444bf6330 100644
--- a/challenge-053/markus-holzer/raku/ch-1.p6
+++ b/challenge-053/markus-holzer/raku/ch-1.p6
@@ -1,4 +1,4 @@
-multi sub MAIN( Int:D $degrees where * ~~ 90|180|270|360 )
+multi sub MAIN( Int:D $degrees where * %% 90 )
{
my @matrix[ 3, 3 ] = ( 1..9 ).batch( 3 );
my $times = $degrees / 90;