mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
19 lines
793 B
XML
19 lines
793 B
XML
<?xml version='1.0' encoding="iso-8859-1"?>
|
|
<?xml-stylesheet type="text/xsl" href="escript.xslt" ?>
|
|
<!DOCTYPE ESCRIPT SYSTEM "escript.dtd">
|
|
<ESCRIPT>
|
|
<fileheader fname="basicio.em">
|
|
<filedesc>Basic I/O functions.</filedesc>
|
|
<datemodified>08/31/2015</datemodified>
|
|
</fileheader>
|
|
|
|
<function name="Print">
|
|
<prototype>Print(anything)</prototype>
|
|
<parameter name="anything" value="Any object, or primitive." />
|
|
<explain>
|
|
Prints 'anything' to the console. If it's a string or number, it will show the value. If it's an array, struct or dictionary, it will show the contents of the structure fairly nicely. On Packets it will show the content. Else, it shows the type of object, i.e. 'ItemRef'.
|
|
</explain>
|
|
<return>Nothing</return>
|
|
</function>
|
|
|
|
</ESCRIPT>
|