1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-08-04 17:40:24 +00:00
QB64-PE/tests/compile_tests/embed/test.bas
Roland Heyder 84cd58162c Adds an test case
simple test case, which just embeds the `test.output` file and prints it
2023-12-15 18:03:36 +01:00

11 lines
101 B
QBasic

$EMBED:'test.output','test'
$CONSOLE
$SCREENHIDE
_DEST _CONSOLE
PRINT _EMBEDDED$("test");
SYSTEM