diff options
| -rw-r--r-- | challenge-139/ash/raku/ch-1.raku | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-139/ash/raku/ch-1.raku b/challenge-139/ash/raku/ch-1.raku new file mode 100644 index 0000000000..bbf4fdf078 --- /dev/null +++ b/challenge-139/ash/raku/ch-1.raku @@ -0,0 +1,7 @@ +sub MAIN(*@a) { + # This is enough to say the result, but it prints True of False + # say [<=] @a + + # But this is to follow the task and print 1 or 0: + say +([<=] @a) +} |
