RosettaCodeData/Task/Create-a-file/BaCon/create-a-file.bacon
2023-07-01 13:44:08 -04:00

23 lines
324 B
Text

' Create file and dir
TRAP LOCAL
OPEN "output.txt" FOR WRITING AS afile
CLOSE FILE afile
CATCH GOTO report
OPEN "/output.txt" FOR WRITING AS afile
CLOSE FILE afile
LABEL trydir
MAKEDIR "docs"
CATCH GOTO report2
MAKEDIR "/docs"
END
LABEL report
PRINT ERR$(ERROR)
GOTO trydir
LABEL report2
PRINT ERR$(ERROR)