exercise: Pangram version: 3 plan: 10 tests: |- for $c-data».».Array.flat { given is-pangram . -> $result { subtest ., { plan 2; isa-ok $result, Bool; is-deeply $result, ., 'Result matches expected'; } } } unit: module example: |- sub is-pangram (Str:D $string --> Bool:D) is export { $string.lc.comb ⊇ ‘a’..‘z’ } stub: |- sub is-pangram ($string) is export { }