home *** CD-ROM | disk | FTP | other *** search
/ Dream 57 / Amiga_Dream_57.iso / Amiga / Programmation / e / Modules / bignume.lha / BigNumE / Examples / info.e < prev    next >
Encoding:
Text File  |  1998-05-24  |  249 b   |  18 lines

  1. /*
  2. ** INFO - Display some informations
  3. **
  4. ** Author:        Allebrand Brice
  5. ** E translation: Maciej Plewa
  6. */
  7.  
  8. MODULE 'bignum'
  9.  
  10. PROC main()
  11.  
  12.     IF bignumbase:=OpenLibrary('BigNum.library', 37)
  13.         BigNumInfo()
  14.         CloseLibrary(bignumbase)
  15.     ENDIF
  16.  
  17. ENDPROC
  18.