QB64.com

QB64 is a modern extended BASIC programming language that retains QBasic/QuickBASIC 4.5 compatibility and compiles native binaries for Windows, Linux, and macOS.

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

Example(s)


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

See Also