Jump to content

Pangram checker: Difference between revisions

→‎Insitux: implementation
(→‎Insitux: implementation)
Line 2,167:
write(" a panagram.")
end</syntaxhighlight>
 
=={{Header|Insitux}}==
 
<syntaxhighlight lang="insitux">
(function pangram? sentence
(let prepped (-> sentence lower-case to-vec))
(all? prepped (map char-code (range 97 123))))
 
(pangram? "The five boxing wizards jump quickly.")
</syntaxhighlight>
 
=={{header|Io}}==
112

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.