home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 December / VPR9712A.ISO / OLS / WIN32 / COMWP380 / comwp380.exe / SAMPLES.EXE / HELLO.C < prev    next >
Text File  |  1997-08-25  |  300b  |  16 lines

  1. /*------------------*
  2.  * 最初のプログラム *
  3.  *------------------*
  4.  */
  5.  
  6. #include <windows.h>
  7.  
  8. LONG FAR PASCAL Puts(LPSTR);
  9.  
  10. int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  11.                    LPSTR lpszCmdParam, int nCmdShow)
  12. {
  13.     Puts("Hello world");
  14.     return 0;
  15. }
  16.