home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / TESTERRO.PRG < prev    next >
Text File  |  1994-02-27  |  561b  |  19 lines

  1. //----------------------------------------------------------------------------//
  2. //  FiveWin 1.0 - Ejemplos
  3. //  (c) A.Linares, F.Pulpón 1993
  4. //
  5. //  Compilar con: BUILD TestErr
  6. //----------------------------------------------------------------------------//
  7.  
  8. // Prueba del gestor de errores
  9.  
  10. //----------------------------------------------------------------------------//
  11.  
  12. function Main()
  13.  
  14.    USE x                             // Aquí va a dar un error
  15.  
  16. return
  17.  
  18. //----------------------------------------------------------------------------//
  19.