Stores and Loads Multiple Lines In A Text File So You Can Put All Of Your Data For Your Program In
Stores and Loads Multiple Lines In A Text File So You Can Put All Of Your Data For Your Program In A Single Text File!!!
Rate Stores and Loads Multiple Lines In A Text File So You Can Put All Of Your Data For Your Program In
(1(1 Vote))
Open "YourDirectory" for output as #1
print #1, "your first line"
print #1, "your second line"
print #1, "ect.ect.ect."
close #1
'use this to laod data from a text file
'on this you can assign varibles that will take the values of "your first line" and "your second line" and so...
open "YourDirectory" for input as #1
input #1, "your first line"
input #1, "your second line"
input #1, "ect.ect.ect"
close #1
Stores and Loads Multiple Lines In A Text File So You Can Put All Of Your Data For Your Program In Comments
No comments yet — be the first to post one!
Post a Comment