Skip to main content
Version: Next

echo

function echo(message): void;

Echo message to the command-line.

Parameters

ParameterTypeDescription

message

any

It accepts string and other primitive types, except null and undefined.

Returns

void

Throws

Throws TypeError if the parameter is null or undefined or no parameter provided.

Example

Rsvim.cmd.echo("Hello Rsvim!");