home *** CD-ROM | disk | FTP | other *** search
- /* F3.rexx */
-
-
- LINEFEED='0A'x; TAB='09'x
-
- TEXT1='Libraries found...'||LINEFEED
-
- TEXT2='Press RETURN to close window when finished!'
-
- WINDOW_DEF='con:100/20/400/440/F3 Key... Library list/close'
-
- if ~Show('L','rexxsupport.library')
-
- then do
-
- call AddLib('rexxsupport.library',0,-30,0)
-
- end
-
- library$=ShowList('L')
-
- call Open(window,WINDOW_DEF)
-
- call Writeln(window,TEXT1)
-
- do i=1 to Words(library$)
-
- call Writeln(window,TAB||Word(library$,i)||LINEFEED)
-
- end
-
- call Writeln(window,TEXT2)
-
- Readch(window,1)
-
- exit
-