Hello World in Perl

Hello World, Perl No Comments »

Here is the hello world example in Perl.

1
2
3
#!usr/bin/perl
 
print("Hello World!");

Hello World in Java

Hello World, Java No Comments »

The hello world example in Java.

1
2
3
4
5
6
7
public class Main
{
	public static void main(String[] args)
	{
		System.out.println("Hello World!");
	}
}

Hello World in PHP

Hello World, php No Comments »

The hello world example in PHP.

1
2
3
<?php 
echo "Hello World!";
?>

Hello World in C#

C#, Hello World No Comments »

Here is the easiest example of a C# program.

1
2
3
4
5
6
7
class Hello
{
	static void Main()
	{
		System.Console.WriteLine("Hello World!");
	}
}
WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS Login