open Command

Purpose:

Returns a file handle to a existing file opening for append.

Syntax:

opena(filename)

Comments:

if filename does not exist, a new file is created.  If the filename does exist, new records will be written to the end of file.

Example:

han = opena("test.dat")

p han,"line 1"

p han,"line 2"

close han