Writing and reading text files with Sedoric?

This is the best place to discuss about the various Oric operating systems like Sedoric, Randos, FT-Dos, and others, as well as serious software, utilities, word processors, disassemblers, etc... that runs on oric computers.
User avatar
Dbug
Site Admin
Posts: 4437
Joined: Fri Jan 06, 2006 10:00 pm
Location: Oslo, Norway
Contact:

Writing and reading text files with Sedoric?

Post by Dbug »

Hi,
if any of you has experience with using Sedoric in BASIC, what would be the recommended way to write stuff to disk in a way that allows me to control what is written (ie: Not using any Sedoric native formated read/write functions).

Basically (haha) the equivalent of:

Code: Select all

10 OPEN"MyFile",1
20 DPRINT 1, "This is some random text";var;" Some more stuff"
30 DPRINT 1, "End of the text
40 CLOSE  1
Thanks :)