1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 14:40:23 +00:00
QB64-PE/tests/compile_tests/console_only/audio_out.bas
Matthew Kilgore 870e67a99b Add $CONSOLE:ONLY and libz tests
libz tests were missing, I added one to test the libz dependency.

Additionally $CONSOLE:ONLY creates many weird interactions and is
currently broken in some cases. This adds tests for all the dependencies
that can work with $CONSOLE:ONLY to verify that they compile correctly.
2022-09-17 03:06:24 -04:00

7 lines
71 B
QBasic

$CONSOLE:ONLY
_DEST _CONSOLE
PLAY "O3"
print "this is a test";
SYSTEM