TOC PREV NEXT INDEX

$echo

Synopsis

$echo _string

Description

$echo prints the specified string. string does not have surrounding quotes.

Examples

You have a V file called simple.v:

int x;
$echo x has been created;

In the VCP, you include the file. AVS/Express prints the message:

OM(SingleWindowApp) -> $include simple.v
x has been created


TOC PREV NEXT INDEX