R
Richard
The standard write command encloses text data within quotes.
I need to create text file file that looks lie this:
[category]
x = Hi
But, for example, that following commands:
Open text.txt for output as #1
x = "Hi"
Write #1, x
Produces a text file with line: "Hi"
How do I write a macro that produces a text file with text data that is not
enclosed by quote marks?
I need to create text file file that looks lie this:
[category]
x = Hi
But, for example, that following commands:
Open text.txt for output as #1
x = "Hi"
Write #1, x
Produces a text file with line: "Hi"
How do I write a macro that produces a text file with text data that is not
enclosed by quote marks?