Subscribe to Rao Zvorovski's Programming blog        RSS Feed
-----

Hello World!

Icon Leave Comment
Hello, world!

The first program everyone makes. Also, the first blog post programmers usually make. Me too, of course. This post is basically me doing Hello World in all most languages I know.

C#
using System;

public static class HelloWorld
{
   public static void Main()
   {
      Console.WriteLine("Hello World!");
   }
}


C
#include<stdio.h>

int main()
{
    printf("Hello World!\n");
    return 0;
}


PHP
<?php
echo "Hello World!";
?>


Visual Basic
Public Module HelloWorld
   Sub Main()
     Console.WriteLine ("Hello World!")
   End Sub
End Module


I was unable to do assembly, however, due to lack of time. Oh well. I also know a bunch of other languages I know, like windows bat files and Javascript and Go by Google, but they aren't that notable for me.

EOF

0 Comments On This Entry

 

Trackbacks for this entry [ Trackback URL ]

There are no Trackbacks for this entry

June 2013

S M T W T F S
      1
2345678
9101112131415
16171819 20 2122
23242526272829
30      

Tags

    Recent Entries

    Search My Blog

    0 user(s) viewing

    0 Guests
    0 member(s)
    0 anonymous member(s)

    Categories