file_text_write_real(fileid,x)

fileid = the id of the file returned by file_text_open_write or file_text_open_append

x = the value to write to the file(this can be a variable or a number)

 

This writes a real value to the file after you opened it. You can write a variable to the file or a number.

 

Example

file_text_write_real(file1,18);

 

Ari - Revision #'1