Code Golf: Code Golf: Difference between revisions

Added 11l
(Add Microsoft Small Basic, moved REBOL)
(Added 11l)
Line 4:
 
Extra credit: how big is the executable required to perform the first task? Skip details about any prior compilation steps that might be involved.
 
=={{header|11l}}==
{{trans|Python}}
 
Using string literals, the following weighs in at 23 bytes.
<syntaxhighlight lang="11l">print(end' ‘Code Golf’)</syntaxhighlight>
 
Without string literals, this is 60 bytes long.
<syntaxhighlight lang="11l">L(c)[37,9,2,3,70,33,9,10,0]{print(end' Char(code' c(+)102))}</syntaxhighlight>
 
=={{header|6502 Assembly}}==
1,481

edits