Tuesday, August 31, 2004

Simple Java Application Source

public class SimpleJava
{
    public SimpleJava()
    {
      // default constructor
    }


    public static void main(String args[])
    {
      System.out.println("Simple Java Application!");
    }


}

Simple HTML page source

<html>
    <head>
        <title>
          Simple HTML Page
        </title>
    </head>
    <body>
        <h1>
          Simple HTML Page
        </h1>
    </body>
</html>

Friday, August 27, 2004

Welcome!

Welcome to the Software Development Blog!

We welcome any postings on creative solutions or frustrating problems that you have discovered in your Software Development pursuits!