0 is always returned.1 for
start refers to the first character in
the stream.0 is returned. If you
do not specify start or
string, the stream is closed and
0 is returned.CHAROUT(myfile,"Hi") --> 0 /* typically */
CHAROUT(myfile,"Hi",5) --> 0 /* typically */
CHAROUT(myfile, ,6) --> 0 /* now at char 6 */
CHAROUT(myfile) --> 0 /* at end of stream */
CHAROUT(,"Hi") --> 0 /* typically */
CHAROUT(,"Hello") --> 2 /* maybe */
Call CHAROUT myfile,"Hello"
Call CHAROUT myfile,"Hi",6
Call CHAROUT myfile