oberonbyexample/src/obe.Mod
Antranig Vartanian 95b512baf4
post rebranding
2024-05-11 19:17:23 +04:00

26 lines
419 B
Modula-2

MODULE obe;
IMPORT
Files,
Platform,
Out;
PROCEDURE CheckDirectories;
BEGIN
END CheckDirectories;
PROCEDURE GenIndex;
CONST
templpath = "../templates/index.html";
outputpath = "../public/index.html";
examplespath = "../examples.txt";
VAR
outputfd, templfd, examplesfd: Files.File;
outputrd, templrd, examplesrd: Files.Rider;
BEGIN
END GenIndex;
BEGIN
CheckDirectories;
GenIndex;
END obe.