1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 12:20:22 +00:00
QB64-PE/tests/compile_tests/deviceinput/test.bas
2022-06-09 21:30:37 -04:00

19 lines
234 B
QBasic

$CONSOLE
$SCREENHIDE
_DEST _CONSOLE
$IF LINUX THEN
' FIXME: Linux works but the test gives some kind of freeglut error, presumably
' some kind of rece condition
print -1;
$ELSE
print _DEVICES > 1;
_DELAY 1
$END IF
SYSTEM