writeTable
writeTable( S_fileName o_table ) =>t/nil
Description
Writes the contents of an association table to a file with one key/value pair per line.
This function is for writing basic SKILL data types that are stored in an association table. The function cannot write database objects or other user-defined types that might be stored in association tables.
Arguments
|
Name of the print file (either a string or symbol) to which the table contents are to be written. |
|
Value Returned
Examples
writeTable("inventory" myTable)
=> t
writeTable(noFile myTable)
=> nil
Related Topics
Return to top