Update all new Tasks
This commit is contained in:
parent
00a190b0a6
commit
91df62d461
5697 changed files with 93386 additions and 804 deletions
9
Task/File-input-output/BASIC/file-input-output-1.basic
Normal file
9
Task/File-input-output/BASIC/file-input-output-1.basic
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
OPEN "INPUT.TXT" FOR INPUT AS #1
|
||||
OPEN "OUTPUT.TXT" FOR OUTPUT AS #2
|
||||
DO UNTIL EOF(1)
|
||||
LINE INPUT #1, Data$
|
||||
PRINT #2, Data$
|
||||
LOOP
|
||||
CLOSE #1
|
||||
CLOSE #2
|
||||
SYSTEM
|
||||
Loading…
Add table
Add a link
Reference in a new issue