Code Golf: Code Golf: Difference between revisions

Content deleted Content added
Chkas (talk | contribs)
Gaham (talk | contribs)
Tag: Manual revert
(6 intermediate revisions by 3 users not shown)
Line 228:
=={{header|Binary Lambda Calculus}}==
shortest: 10 bytes
<syntaxhighlightpre>*Code Golf</syntaxhighlightpre>
avoiding ASCII: 23 bytes
<syntaxhighlightpre>46 60 17 ac 23 40 b0 02 cf f7 97 f7 ee 80 bc 90 9b 9a df b8 90 93 99</syntaxhighlightpre>
 
=={{header|BQN}}==
Line 289:
# for i in [44 0 11 10 79 40 0 3 9]write strchar(111-i).
for i in [44 0 11 10 79 40 0 3 9]write strchar(111-i).
</syntaxhighlight>
 
=={{header|ed}}==
 
The second part of the challenge is not accomplishable in ed, because there's no way to insert arbitrary characters with escape sequences. Also note that the trailing newline in the output is unavoidable, like in [[#sed]].
 
<syntaxhighlight lang="sed">
# by Artyom Bologov
a
Code Golf
.
p
Q
</syntaxhighlight>