aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;