home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh06 / HelloWorld / Classes / HelloWorld.uc next >
Encoding:
Text File  |  2006-01-22  |  242 b   |  15 lines

  1. // %PARAMETERS = "HelloWorld C:\UT2004"
  2. //Identifies the package
  3.  
  4. class HelloWorld extends Commandlet;
  5.  
  6. function int Main(string Args)
  7. {
  8.   log("*************");
  9.   
  10.   log("Hello World!");
  11.   log("*************");
  12.  
  13.   return 0;     
  14. }
  15.