From ebe894828aade717f372f58c8de4af65869786cf Mon Sep 17 00:00:00 2001 From: Simon Proctor Date: Mon, 1 Feb 2021 13:17:50 +0000 Subject: Added comments. --- challenge-098/simon-proctor/raku/ch-1.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-098/simon-proctor/raku/ch-1.raku b/challenge-098/simon-proctor/raku/ch-1.raku index 6ae13767ff..db223dc415 100644 --- a/challenge-098/simon-proctor/raku/ch-1.raku +++ b/challenge-098/simon-proctor/raku/ch-1.raku @@ -13,7 +13,7 @@ unit sub MAIN(); # Note that characters include Uncide ones like £€æßðđŋŧ¶«»¢“”ŋŧ←ħ # This is cool. -# Get out filehandle +# Get our filehandle. $?FILE is the current file so we open a read only handle to it. my $handle = $?FILE.IO.open( :r ); # Give some opening sprawl -- cgit