Hello World!


The purpose of this blog is to present some useful technology titbits (and maybe other stuff too) that I’ve either learned on my own or from somewhere else. Hopefully this will help someone out there with a problem.

For those of you who thought this was about the “Hello world” program, don’t be disappointed. Here you go :

Java

[java]class sampleClass
{
public static void main(String args[])
{
System.out.println(“Hello, world”);
}
}[/java]

C

[cpp]main() {
printf(“Hello, world”);
}
[/cpp]