Pangram checker

From Rosetta Code
Revision as of 06:20, 20 February 2021 by Drkameleon (talk | contribs) (Replaced content with "=={{header|Arturo}}== <lang rebol>chars: map 97..122 => [to :string to :char] pangram?: function [sentence][ every? chars 'ch -> in? ch sentence ] print pangr...")

Arturo

<lang rebol>chars: map 97..122 => [to :string to :char] pangram?: function [sentence][

   every? chars 'ch ->
       in? ch sentence

]

print pangram? "this is a sentence" print pangram? "The quick brown fox jumps over the lazy dog."</lang>

Output:
false
true