/* Filename:    J001_SimpleInv1.js
 * Description: Writing "Hello World!"
 * Copyright:   2006 The Code Corporation. Please see http://www.codecorp.com/jsLicensing.html for information regarding copyright and grant of license.
 * $Revision: 118 $
 * $Date: 2006-12-05 16:26:51 -0700 (Tue, 05 Dec 2006) $
 */

// Declare the variables
var inventory = new gui.Text("Hello World!");


// show the form
gui.showForm(inventory);


//EOF
