Code Golf: Code Golf: Difference between revisions

add FreeBASIC
(→‎{{header|Wren}}: Had to reinsert space after class keyword as it doesn't compile without it.)
(add FreeBASIC)
Line 19:
{{out}}
<pre>Code Golf</pre>
 
=={{header|FreeBASIC}}==
With a quoted string, the following weighs in at 12 bytes.
<lang freebasic>?"Code Golf"</lang>
 
For the second task, this is 80 bytes long.
<lang freebasic>dim as byte i,a(8)={37,81,70,71,2,41,81,78,72}
for i=0 to 8
?chr(30+a(i));
next</lang>
 
Both compile to a file 27,016 bytes long.
 
=={{header|jq}}==
781

edits