Tag Archive
3D 3dprinting android ant BigData bitcoin Browsers C/C++ cryptocurrency CSS dd ddrescue dogecoin DOS editors find Games Git hadoop html html5 Java Linux litecoin node perl Postgres Programming Python scripting Shell SQL Swing TOTK Utilities utilization vi Video Web Web Design Wifi Windows Wordpress XML Zelda
Gallery of Hello World!
Here is a list of the Hello World Programs for different languages:
C
#include <stdio.h>
int main()
{
printf("Hello World!");
}
C++
#include <iostream.h>
int main()
{
cout << "Hello World!" << endl;
}
C#
public class HelloWorld
public static void Main()
{
System.Console.WriteLine("Hello World!");
}
Java
class HelloWorld {
static void main(String[] args)
{
System.out.println("Hello World!");
}
SHELL
echo "Hello World"
Python 2
print "Hello World!\n"
Python 3
print ("Hello World!")
Ruby
puts "Hello World!"
Perl
print "Hello World!n";
PHP
<?php
print "Hello World!";
?>
Rust
fn main() {
println("Hello World!");
}
This is the simplest form of Hello World for most of these languages.