aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-124/wambash/raku/ch-1.raku10
1 files changed, 10 insertions, 0 deletions
diff --git a/challenge-124/wambash/raku/ch-1.raku b/challenge-124/wambash/raku/ch-1.raku
new file mode 100644
index 0000000000..c1a9cb5ea6
--- /dev/null
+++ b/challenge-124/wambash/raku/ch-1.raku
@@ -0,0 +1,10 @@
+#!/usr/bin/env raku
+
+multi MAIN () {
+ run 'toilet', '-f', 'bigmono12', '♀'
+ or samewith :u;
+}
+
+multi MAIN ( Bool :unicode(:u($))! ) {
+ say '♀';
+}