mirror of
https://github.com/vishapoberon/oberonbyexample.git
synced 2026-04-06 21:32:25 +00:00
post rebranding
This commit is contained in:
parent
4169aecd5b
commit
95b512baf4
66 changed files with 716 additions and 15 deletions
26
src/obe.Mod
Normal file
26
src/obe.Mod
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue