home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh03 / HelloWorld.uc
Encoding:
Text File  |  2005-07-10  |  119 b   |  8 lines

  1. class HelloWorld extends Commandlet;  
  2.  
  3. function int Main(string Args)
  4. {
  5.   log("Hello World!!!");
  6.   return 0;
  7. }
  8.