1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-08 14:55:12 +00:00
QB64-PE/tests/compile_tests/screenimage/test.bas

18 lines
221 B
QBasic
Raw Normal View History

$CONSOLE
$SCREENHIDE
_DEST _CONSOLE
$IF WIN THEN
$ELSE
' We can't do _SCREENIMAGE on Linux or Mac OS build agents, but we can still
' test that it compiles
PRINT -13;
SYSTEM
$END IF
i& = _SCREENIMAGE
PRINT i&;
SYSTEM