Module HelloWorldApp
Sub Main()
System.Console.WriteLine("Hello, World!")
End Sub
End Module
Friday, May 25, 2007
DarkBasic
PRINT "HELLO WORLD"
TEXT 0,0,"Hello, World!"
WAIT KEY
Home page : http://darkbasic.thegamecreators.com/
TEXT 0,0,"Hello, World!"
WAIT KEY
Home page : http://darkbasic.thegamecreators.com/
Tuesday, May 22, 2007
bash - Bourne again shell
#!/bin/sh
echo "Hello, World!"
Useful Links :
http://www-128.ibm.com/developerworks/library/l-bash.html
http://tille.garrels.be/training/bash/index.html
echo "Hello, World!"
Useful Links :
http://www-128.ibm.com/developerworks/library/l-bash.html
http://tille.garrels.be/training/bash/index.html
B
/* Hello */
main()
{
extern a, b, c;
putchar (a); putchar (b); putchar (c); putchar ('!*n');
}
a 'hell' ;
b 'o, w' ;
c 'orld' ;
Tutorial :
http://cm.bell-labs.com/cm/cs/who/dmr/btut.html
main()
{
extern a, b, c;
putchar (a); putchar (b); putchar (c); putchar ('!*n');
}
a 'hell' ;
b 'o, w' ;
c 'orld' ;
Tutorial :
http://cm.bell-labs.com/cm/cs/who/dmr/btut.html
Subscribe to:
Posts (Atom)

