Go to the first, previous, next, last section, table of contents.


print_output

print_output(Obj)
: It outputs the object Obj to a file. If the optional variable file is set, then it outputs the Obj to the specified file, else it outputs it to "asir_output_tmp.txt". If the optional variable mode is set to "w", then the file is newly created. If the optional variable is not set, the Obj is appended to the file.
print_output(Obj | file=key0,mode=key1)
: This function allows optional variables file, mode

Example:

 print_output("Hello"|file="test.txt");
References
glib_tops , ( , )


Go to the first, previous, next, last section, table of contents.