1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 15:50:24 +00:00
QB64-PE/tests/compile_tests/audio_test/test.bas
2022-05-12 00:21:02 -04:00

11 lines
132 B
QBasic

$CONSOLE
$SCREENHIDE
_DEST _CONSOLE
s = _SNDOPEN("foobar.mp3", "VOL,PAUSE,SETPOS"): _SNDLOOP s
_SNDCLOSE s
print "Sound";
SYSTEM