From cd4e516ab22103d20e3c4002129a71b7fc9c0dd0 Mon Sep 17 00:00:00 2001 From: Simon Proctor Date: Mon, 21 Sep 2020 11:44:59 +0100 Subject: Small fix --- challenge-079/simon-proctor/raku/ch-2.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-079/simon-proctor/raku/ch-2.raku b/challenge-079/simon-proctor/raku/ch-2.raku index 9824854e3a..dc65ae171b 100644 --- a/challenge-079/simon-proctor/raku/ch-2.raku +++ b/challenge-079/simon-proctor/raku/ch-2.raku @@ -60,4 +60,4 @@ multi sub calculate-rain-levels( @heights where { @heights.elems > 2 }, $offset= return RainArea.new( range => ( $offset..^($offset+@heights.elems) ), :$area, :$height ); } -multi sub calculate-rain-levels(@,$) {} +multi sub calculate-rain-levels(@,$) { return Empty} -- cgit