RosettaCodeData/Task/Create-a-file/Seed7/create-a-file.seed7

15 lines
294 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$ include "seed7_05.s7i";
include "osfiles.s7i";
const proc: main is func
local
var file: aFile is STD_NULL;
begin
aFile := open("output.txt", "w");
close(aFile);
2024-07-13 15:19:22 -07:00
makeDir("docs");
2023-07-01 11:58:00 -04:00
aFile := open("/output.txt", "w");
close(aFile);
2024-07-13 15:19:22 -07:00
makeDir("/docs");
2023-07-01 11:58:00 -04:00
end func;