1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_ECHO.md
2022-12-24 21:14:48 -06:00

713 B

The _ECHO statement allows outputting text to a $CONSOLE window without having to alternate between _DEST pages.

Syntax

_ECHO {"text to output" | textVariable$}

Description

Availability

  • Version 1.3 and up.

Example(s)


$CONSOLE
PRINT "this will show in the main window"
_ECHO "this will show in the console"

See Also