Pangram checker: Difference between revisions

Added Befunge example.
(Added Befunge example.)
Line 595:
<pre>"The quick brown fox jumped over the lazy dog" is not a pangram
"The five boxing wizards jump quickly" is a pangram</pre>
 
=={{header|Befunge}}==
 
Reads the sentence to test from stdin.
 
<lang befunge>>~>:65*`!#v_:"`"`48*v>g+04p1\4p
^#*`\*93\`0<::-"@"-*<^40!%2g4:_
"pangram."<v*84<_v#-":"g40\" a"
>>:#,_55+,@>"ton">48*>"si tahT"</lang>
 
{{in}}
<pre>The quick brown fox jumps over the lazy dog.</pre>
 
{{out}}
<pre>That is a pangram.</pre>
 
=={{header|Bracmat}}==
Anonymous user