Pangram checker: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 2,867: Line 2,867:
no - no a
no - no a
</pre>
</pre>

=={{header|Phixmonti}}==
<syntaxhighlight lang="Phixmonti">include ..\Utilitys.pmt

def pangram?
lower "abcdefghijklmnopqrstuvwxyz" swap remove len not nip
enddef

"The quick brown fox jumps over the lazy dog." pangram?
"This is a test" pangram?
"NOPQRSTUVWXYZ abcdefghijklm" pangram?
"abcdefghijklopqrstuvwxyz" pangram?

pstack</syntaxhighlight>
{{out}}
<pre>
[1, 0, 1, 0]

=== Press any key to exit ===</pre>


=={{header|PHP}}==
=={{header|PHP}}==