1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00

Avoid OS differences in tests

This commit is contained in:
Roland Heyder 2023-12-15 19:59:48 +01:00
parent 84c9761d51
commit 395af5c486
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,8 @@ $CONSOLE
$SCREENHIDE
_DEST _CONSOLE
PRINT _EMBEDDED$("test");
dat$ = _EMBEDDED$("test")
PRINT LEFT$(dat$, LEN(dat$) - 2);
SYSTEM

View file

@ -4,7 +4,8 @@ $CONSOLE
$SCREENHIDE
_DEST _CONSOLE
PRINT _EMBEDDED$("test");
dat$ = _EMBEDDED$("test")
PRINT LEFT$(dat$, LEN(dat$) - 2);
SYSTEM