home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
spoc88
/
loops
/
readkbd.bas
< prev
Wrap
BASIC Source File
|
1988-06-10
|
274b
|
12 lines
'ReadKBD, a subroutine contained in MC1.INC
SUB ReadKBD(RetChar$)
' This function reads a keystroke from the keyboard
' and returns 1- OR 2-character string.
DO
RetChar$ = INKEY$ ' get the keyboard input
LOOP UNTIL RetChar$<>""
END SUB