home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 February / VPR9602A.ISO / fwindows / comwp260 / samples / hello.c < prev    next >
Text File  |  1995-10-09  |  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.