Hello World: Difference between revisions
Jump to navigation
Jump to search
imported>Gaurav Banga |
imported>Luke Cheng m (→Example in C) |
||
Line 6: | Line 6: | ||
== Example in some of the most popular languages == | == Example in some of the most popular languages == | ||
=== Example in C === | === Example in [[C]] === | ||
<pre> | <pre> | ||
#include <stdio.h> | #include <stdio.h> | ||
Line 16: | Line 16: | ||
} | } | ||
</pre> | </pre> | ||
=== Example in [[C%2B%2B|C++]] === | === Example in [[C%2B%2B|C++]] === | ||
<pre> | <pre> |
Revision as of 14:01, 24 July 2008
A Hello World program, as first introduced in the book The C Programming Language, is a very short program that typically just prints a word or two of output to a console. Such a program is often one of the first programs that a programmer writes when learning a programming language, as it provide's a cursory introduction to the language's syntax and output.
Example in some of the most popular languages
Example in C
#include <stdio.h> int main() { printf("This is my first C program!\n"); return 0; }
Example in C++
// Hello World in C++ (pre-ISO) #include <iostream.h> main() { cout << "Hello World!" << endl; return 0; }
Example in Java
// Hello World in Java class HelloWorld { static public void main( String args[] ) { System.out.println( "Hello World!" ); } }
Example in Perl
# Hello world in perl print "Hello World!\n";
Example in PHP
<?php // Hello World in PHP echo 'Hello World!'; ?>
Example in Python
# Hello World in Python print "Hello world"
Example in VBScript
'Hello World in VBScript WScript.Echo "Hello world"
Example in Ruby
# Hello World in Ruby puts 'Hello world'
Example in C#
// Hello World in C# class Hello { static void Main() { System.Console.WriteLine("Hello World"); } }
Hello World in Other Languages
See also
External links
The Hello World Collection in more than 300 programming languages