APPEND

From Dark Signs Online
Revision as of 03:47, 18 March 2024 by Doridian (talk | contribs) (Created page with "Appends data to the end of a file <pre>APPEND myFile.txt test 1 APPEND myFile.txt test 2 APPEND myFile.txt test 3 $myVar = test 4 APPEND myFile.txt $myVar</pre> And myFile.txt will look like this <pre>test 1 test 2 test 3 test 4</pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Appends data to the end of a file

APPEND myFile.txt test 1
APPEND myFile.txt test 2
APPEND myFile.txt test 3
$myVar = test 4
APPEND myFile.txt $myVar

And myFile.txt will look like this

test 1
test 2
test 3
test 4