APH Networks | community: I <3 Programming - APH Networks | community

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

I <3 Programming

#1 User is offline   DynCastProgramming 

  • Super Member
  • Group: Members
  • Posts: 90
  • Joined: 09-October 09
  • Gender:Male
  • Location:Virginia, USA
  • Interests:iPhone Development, Web Development, Gaming

Posted 18 October 2009 - 07:36 PM

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");
}
Posted Image
1

#2 User is offline   chconline 

  • Editor-in-Chief
  • Group: Executive Staff Team
  • Posts: 26,199
  • Joined: 22-October 04
  • Gender:Male
  • Location:Calgary, Alberta

Posted 18 October 2009 - 07:47 PM

C:

printf("Hello world\n");

HTML:

Hello world

:lol:
Posted Image

#3 User is offline   HopkinsProgramming 

  • Nom Nom Nom... BANHAMMER!
  • Group: Staff Team
  • Posts: 1,817
  • Joined: 13-June 06
  • Gender:Male
  • Location:Virginia
  • Interests:Web Design and Development

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!"
Posted Image

#4 User is offline   DynCastProgramming 

  • Super Member
  • Group: Members
  • Posts: 90
  • Joined: 09-October 09
  • Gender:Male
  • Location:Virginia, USA
  • Interests:iPhone Development, Web Development, Gaming

Posted 18 October 2009 - 08:10 PM

View Postchconline, on 18 October 2009 - 07:47 PM, said:

C:

printf("Hello world\n");

HTML:

Hello world

:lol:


Too bad your not eligible chc. =P
Posted Image
1

#5 User is offline   Big Bang 

  • APH Platinum
  • Group: +Subscriber
  • Posts: 2,982
  • Joined: 30-October 06
  • Gender:Male

Posted 20 October 2009 - 07:32 PM

B) Human: "Hello World"
Posted Image
Camaro SS FTW
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic