-
Notifications
You must be signed in to change notification settings - Fork 1
Files
Jean Dubois edited this page Jun 1, 2023
·
4 revisions
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 !>>.
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.