Fire up your applications with Jetfire
processing
// J E T F I R E    W O R K F L O W
//==============================================================================
// HelloWorld.txt
//==============================================================================
// Copyright (C) 2008 TrackerRealm Corporation
// This file is part of Jetfire.
// 
// Jetfire is open software: you can redistribute it and/or modify it under the 
// GNU Affero General Public License (AGPL) as published by the Free Software Fo
// 
// Jetfire is distributed in the hope that it will be useful, but WITHOUT ANY WA
// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICU
// See the GNU Affero General Public License (AGPL) for more details.
// 
// You should have received a copy of the GNU Affero General Public License (AGP
// If not, see http://www.gnu.org/licenses.
// REMOVAL OF THIS NOTICE IS VIOLATION OF THE COPYRIGHT.
//==============================================================================
//
namespace JetfireDemos
{
   // Every software program shows Hello World.
   public workflow HelloWorld
   {
      // Constructor
      public HelloWorld()
      {
         CreationDateTime = DateTime.Now;
      }
      
      // P R O P E R T I E S
      public DateTime CreationDateTime
      {
         get;
         private set;
      }
      public string Age
      {
         get { return "I was created on " + this.CreationDateTime.ToString(); } 
      }
   }
}