Print (open)
Prints a string
Syntax
// Core function, no LOADLIB necessary
MACRO Print(STRING data)
Parameters
STRING data
The string to print
Description
This function prints a string. Use '\n' (linefeed) in the string to print multiple lines. It is possible to print more than one string by using the merge operator '||'.
Examples
// Prints '<HTML>'
Print("<HTML>");
// Prints 'My website'
STRING site_title := "My website";
Print(site_title);
//Prints '<a href="http://www.b-lex.com">Home</a>'
STRING home_link := "http://www.b-lex.com/";
PRINT('<a href="' || home_link || '">Home</a>');