Lisp:
(defun foo()
"Hello World"
)
Java:
public static void main(String[] args) {
System.out.println("Hello World");
}
PHP:
<?php echo 'Hello World'; ?>
C++:
public int Main() {
cout << "Hello World" << endl;
}
ObjC/iPhone:
- (void)applicationDidFinishLaunching:(NSApplication)application {
NSLog("Hello World");
}
Page 1 of 1
I <3 Programming
#3
Posted 18 October 2009 - 08:00 PM
Javascript:
<script type="text/javascript">
alert('Hello World!');
</script>
Visual Basic 6:
Private Sub Form_Load()
MsgBox "Hello World!"
End Sub
AutoIT:
MsgBox(64,"Information","Hello World!")
Basic:
10 PRINT "Hello World!"
Python:
print "Hello World!"
<script type="text/javascript">
alert('Hello World!');
</script>
Visual Basic 6:
Private Sub Form_Load()
MsgBox "Hello World!"
End Sub
AutoIT:
MsgBox(64,"Information","Hello World!")
Basic:
10 PRINT "Hello World!"
Python:
print "Hello World!"
#4
Posted 18 October 2009 - 08:10 PM
chconline, on 18 October 2009 - 07:47 PM, said:
C:
printf("Hello world\n");
HTML:
Hello world

printf("Hello world\n");
HTML:
Hello world
Too bad your not eligible chc. =P
Share this topic:
Page 1 of 1

Help













