Code Golf: Code Golf: Difference between revisions

m
Qualify "all compilers"
(Added Ada solution)
m (Qualify "all compilers")
Line 25:
with Ada.Text_IO;procedure C is L:array(1 .. 9)of Integer:=(67,111,100,101,32,71,111,108,102);begin for C of L loop Ada.Text_IO.Put(Character'Val(C));end loop;end;
</syntaxhighlight>
163 characters; this should be portable to all Ada compilers recent enough to include Ada.Command_Line, and all platforms
 
If we presume Linux, GNAT, and an executable name of "Code Golf", this can be shortened to (all one line):
21

edits