|  |  D.15.23.5 writeDataToSSI Procedure from libraryssi.lib(see  ssi_lib).
 
Example:Usage:
writeDataToSSI(filename, data); filename string, data list, filename is the path to the SSI file, data is the list of expressions to write
 |  | LIB "ssi.lib";
ring R = 0, (x, y, z), dp;
writeDataToSSI("example.ssi", list(x^2, y^2, z^2, "hello world"));
 | 
 
 |