home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / misc / amigaguide.lzh / AG_V34 / rexx / getxref.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1992-12-30  |  259 b   |  14 lines

  1. /* Simple test for amigaguide.library
  2.  * Written by David N. Junod
  3.  */
  4.  
  5. OPTIONS RESULTS
  6. PARSE ARG node
  7.  
  8. /* Load the ARexx utility library */
  9. IF ~SHOW('L','amigaguide.library') THEN
  10.    CALL ADDLIB('amigaguide.library',0,-30)
  11.  
  12.    line=GetXRef(node)
  13.    say line
  14.