Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
IF LEN(COMMAND$) THEN
|
||||
OPEN "notes.txt" FOR APPEND AS 1
|
||||
PRINT #1, DATE$, TIME$
|
||||
PRINT #1, CHR$(9); COMMAND$
|
||||
CLOSE
|
||||
ELSE
|
||||
d$ = DIR$("notes.txt")
|
||||
IF LEN(d$) THEN
|
||||
OPEN d$ FOR INPUT AS 1
|
||||
WHILE NOT EOF(1)
|
||||
LINE INPUT #1, i$
|
||||
PRINT i$
|
||||
WEND
|
||||
CLOSE
|
||||
END IF
|
||||
END IF
|
||||
Loading…
Add table
Add a link
Reference in a new issue