RosettaCodeData/Task/Create-a-file/ERRE/create-a-file.erre

15 lines
221 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
PROGRAM FILE_TEST
!$INCLUDE="PC.LIB"
BEGIN
OPEN("O",#1,"output.txt")
CLOSE(1)
OS_MKDIR("C:\RC") ! with the appropriate access rights .......
OPEN("O",#1,"C:\RC\output.txt")
CLOSE(1)
END PROGRAM