"Hello world."
Such a simple phrase. Yet for many programmers around the world, this simple line of text, 13 characters in all, captures your first step into what could be years of enjoyment.
Shuba Gooba Designs is a brand new consulting company about web programming and web design. We love to code and we like to provide our customers with innovative solutions and designs at a competitive price.
Our group started in 1999 and we haven't looked back since. We finally decided to formalize the company and launch this site in what we hope to become the launchpad for ideas and also serve as our face to our customers.
We welcome you to challenge us with your web problems, Amazon.com, eBay, Paypal or other system integration issues, ecommerce headaches or the new Web 2.0, Rich Internet Applicaiton phenomenon that is on verge of explosion.
So for many of us at Shuba Gooba Designs, we want to say "Hello World" and want to add "Bring it on!"
Shuba Gooba Designs
C:
#include <stdio.h>
int main(char* argc, char* argv[])
{
printf("Hello world.\n");
return 0;
}
C#:
using System;
public class Hello
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World.");
}
}
Coldfusion:
<CFSET msg="Hello world."> <CFOUTPUT>#msg#</CFOUTPUT>Java:
class Hello
{
public static void main(String[] args) {
System.out.println("Hello world.");
}
}
Javascript:
<script type="text/javascript">
alert("Hello world.");
</script>
MySQL:
mysql> select 'Hello world.'; +--------------+ | Hello world. | +--------------+ | Hello world. | +--------------+ 1 row in set (0.01 sec)Perl:
#!/usr/bin/perl use strict; print "Hello world.\n"; exit 0;PHP:
<?php echo "Hello world.\n"; ?>
© 2010 Shuba Gooba Designs