====== echo ======
===== Description =====
Echo a given string of text to the event log.
===== Function prototype =====
void echo
===== Arguments =====
^ Name ^ Type ^ Comment ^
| text | string | The string of text to be echoed to the event log. |
===== Return value =====
None (void).
===== Example =====
==== Using a literal string ====
echo "hello"
==== Using a string variable ====
string s
set s "hello"
echo s
==== Using a non-string variable ====
int i
set i 1024
echo i
===== Comments =====
None.
===== See also =====
None.