Code Golf: Code Golf: Difference between revisions

→‎{{header|Yabasic}}: two spaces saved
(→‎{{header|C}}: puts() adds a newline character after the final “f”, printf() not.)
(→‎{{header|Yabasic}}: two spaces saved)
Line 652:
With a quoted string, the following weighs in at 12 bytes.
<syntaxhighlight lang="yabasic">?"Code Golf"</syntaxhighlight>
Without quoted literals, this is 6563 bytes long.
<syntaxhighlight lang="yabasic">data 44,0,11,10,79,40,0,3,9:for i=00to to 8 read8read n:?chr$(111-n);next</syntaxhighlight>
Note: Yabasic is an interpreter, it does not generate executables.
 
4

edits