Code Golf: Code Golf: Difference between revisions

From Rosetta Code
Content added Content deleted
(Code Golf)
 
(Added Wren)
Line 2: Line 2:


Show the shortest possible program that will emit the string “Code Golf”, without the quotation marks and without anything after the final “f”.
Show the shortest possible program that will emit the string “Code Golf”, without the quotation marks and without anything after the final “f”.

=={{header|Wren}}==
Well, this has no quotation marks and there's nothing after the final "f" but it's a bit lengthy at 76 characters (79 if you count the implicit \n at the end of the first three lines). Note that Wren's single pass compiler allows the last line though it does nothing.
<lang ecmascript>class Code{}
class Golf{}
System.writeAll([Code,String.fromByte(32),Golf])
Golf</lang>

{{out}}
<pre>
Code Golf
</pre>


[[Category:Simple]]
[[Category:Simple]]

Revision as of 15:48, 9 December 2021

Code Golf: Code Golf is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Show the shortest possible program that will emit the string “Code Golf”, without the quotation marks and without anything after the final “f”.

Wren

Well, this has no quotation marks and there's nothing after the final "f" but it's a bit lengthy at 76 characters (79 if you count the implicit \n at the end of the first three lines). Note that Wren's single pass compiler allows the last line though it does nothing. <lang ecmascript>class Code{} class Golf{} System.writeAll([Code,String.fromByte(32),Golf]) Golf</lang>

Output:
Code Golf