Copy stdin to stdout: Difference between revisions

Content added Content deleted
m (→‎{{header|Wren}}: Changed to Wren S/H)
imported>Tromp
(cat in BLC)
Line 94: Line 94:
=={{header|Brainf***}}==
=={{header|Brainf***}}==
<syntaxhighlight lang="brainf***">,[.,]</syntaxhighlight>
<syntaxhighlight lang="brainf***">,[.,]</syntaxhighlight>

=={{header|Binary Lambda Calculus}}==

As explained on https://www.ioccc.org/2012/tromp/hint.html, the cat program is the 4-bit prgram

<syntaxhighlight>0010</syntaxhighlight>

in bit-wise BLC, and any of the 16 characters in

<syntaxhighlight> !"#$%&'()*+,-./</syntaxhighlight>

for byte-wise BLC.


=={{header|C}}==
=={{header|C}}==