summary refs log tree commit diff stats
path: root/raku/pangram/Pangram.rakumod
diff options
context:
space:
mode:
Diffstat (limited to 'raku/pangram/Pangram.rakumod')
-rw-r--r--raku/pangram/Pangram.rakumod5
1 files changed, 5 insertions, 0 deletions
diff --git a/raku/pangram/Pangram.rakumod b/raku/pangram/Pangram.rakumod
new file mode 100644
index 0000000..30618c8
--- /dev/null
+++ b/raku/pangram/Pangram.rakumod
@@ -0,0 +1,5 @@
+unit module Pangram;
+
+sub is-pangram (Str $string) is export {
+    $string.lc.comb ⊇ ('a'..'z');
+}