Well, I've finally done it and installed a blog.  In this blog I have a place to publish my thoughts and accomplishments for anyone who may be interested.  Also I plan to start some discussions about Software Engineering topics and projects as I post about them.

First let's hear from my favorite scripting languages:

#/usr/bin/python
print "Hello World\n"
#/usr/bin/ruby
puts "Hello World\n"
#/usr/bin/php
echo "Hello World\n";

Then a blast from the past. I programmed in QBasic for roughly 6 years. I've since forgotten it all. I even had to look up the syntax for comments.

' This is Q-Basic
CLS
phrase$ = "Hello World!"
LOCATE 13,40
PRINT phrase$
END

And now two of my favorite compiled languages:

(* This is OCaml *)
print_endline "Hello world!";;
// This is C#
using System;
class MyClass
{
  static void Main()
  {
    Console.WriteLine("Hello World!");
  }
}

2 Comments

By: Daniel on June 10, 2008

Yay C#


(* This is F# *)
printf "Hello World!"

By: Mom on June 11, 2008

A link for any interested Ruby programmers:

http://www.texasstartupblog.com/2008/06/11/simpleticket-ruby-on-rails/

Comments RSS TrackBack Identifier URI

Leave a comment