Skip to content
Jean Dubois edited this page Jun 1, 2023 · 4 revisions

Files

Write

To write in a file, use write "sometext" >> "path/to/file.ext" line_number. line_number is an integer and is optional.

To overwrite the content when you write, replace >> by !>>.

Read

To read a file, use read "path/to/file.ext". You can asssign this value to a variable by using read "file" >> identifier line_number or var identifier = read "file" line_number. line_number is an integer and is optional.

Clone this wiki locally