summary refs log tree commit diff stats
path: root/raku/pangram/Pangram.rakumod
blob: 30618c8b9788cc2a964846627e62cb3aaa3fa1df (plain) (blame)
1
2
3
4
5
unit module Pangram;

sub is-pangram (Str $string) is export {
    $string.lc.comb ⊇ ('a'..'z');
}