close -- close an output stream |
Syntax |
close(OUT: OSTREAM) |
Description |
Example |
/**/ file := OpenOFile("my-test"); -- open file for output from CoCoA /**/ print "test" on file; -- write to my-file /**/ close(file); -- close the output stream, "flushes" all output |
See Also |