home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
comm
/
bbbbs-7.2.lha
/
BBBBS
/
BBBBS72.lha
/
rexx
/
bbsLOGON.baud
< prev
next >
Wrap
Text File
|
1993-12-17
|
426b
|
25 lines
/* $VER: bbsLOGON.baud 6.6 (17.12.93)
For any program that requires IO,
IF EXISTS('rexx:SAY_something.rexx') THEN
CALL SAY_something.rexx(name level)
To have a routine return immediately, use
IF EXISTS('rexx:do_something_clever.rexx') THEN
ADDRESS AREXX do_something_clever.rexx name level
*/
CR='0D'x
PARSE ARG name level .
/* do stuff here */
/* EXIT 1 will force logoff of BBBBS */
EXIT 0
/* bbsLOGON.baud */