Please see also: * Wiki:HelloWorld * http://bbs.kldp.org/viewtopic.php?t=28675 == BASIC == {{{ 10 print "Hello World" }}} == C Language == {{{#!vim c #include int main() { printf("Hello World\n"); return 0; } }}} {{{#!vim c #include #define e 3 #define g (e/e) #define h ((g+e)/2) #define f (e-g-h) #define j (e*e-g) #define k (j-h) #define l(x) tab2[x]/h #define m(n,a) ((n&(a))==(a)) long tab1[]={ 989L,5L,26L,0L,88319L,123L,0L,9367L }; int tab2[]={ 4,6,10,14,22,26,34,38,46,58,62,74,82,86 }; int main(m1,s) char *s; { int a,b,c,d,o[k],n=(int)s; if(m1==1){ char b[2*j+f-g]; main(l(h+e)+h+e,b); printf(b); } else switch(m1-=h){ case f: a=(b=(c=(d=g)< int main() { std::cout <<"Hello, world.\n"; return 0; } }}} == JAVA == {{{#!vim java // HelloWorld.java class HelloWorld { public static void main(String args[]) { System.out.println("Hello, World!"); } } }}} ---- CategoryHacking