1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-09 16:20:18 +00:00
QB64-PE/tests/compile_tests/console_only/screenimage.bas

17 lines
214 B
QBasic
Raw Normal View History

$CONSOLE:ONLY
_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 -11;
SYSTEM
$END IF
i& = _SCREENIMAGE
PRINT i&;
SYSTEM