From c390480d010bdd2b58d9aeb1c00f375575db2547 Mon Sep 17 00:00:00 2001 From: Andinus Date: Thu, 18 Feb 2021 18:52:19 +0530 Subject: Handle reading puzzle from file within Octans::CLI module This makes it easier to understand. --- lib/Octans/CLI.rakumod | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib/Octans/CLI.rakumod') diff --git a/lib/Octans/CLI.rakumod b/lib/Octans/CLI.rakumod index 04e1b5d..8abfef8 100644 --- a/lib/Octans/CLI.rakumod +++ b/lib/Octans/CLI.rakumod @@ -43,8 +43,13 @@ multi sub MAIN ( ]; } - # Get the puzzle from $path if it's passed. And set @gray-squares. - @puzzle = get-puzzle($_) with $path; + # Get the puzzle from $path if it's passed. + if $path.IO.f { + @puzzle = $path.IO.lines.map(*.words.cache.Array); + } else { + @puzzle = get-puzzle($path); + } + # set-gray-squares also removes asterisks from @puzzle. @gray-squares = set-gray-squares(@puzzle); # ($y, $x) -- cgit 1.4.1-2-gfad0