home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / HELLO.PAK / HELLOAPP.CPP next >
C/C++ Source or Header  |  1995-08-29  |  385b  |  13 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //----------------------------------------------------------------------------
  4. #include <owl\owlpch.h>
  5. #include <owl\applicat.h>
  6.  
  7. int
  8. OwlMain(int /*argc*/, char* /*argv*/ [])
  9. {
  10.   return TApplication("Hello World!").Run();
  11. }
  12.  
  13.