Change source file extension

This commit is contained in:
2025-05-25 16:07:42 +02:00
parent 94f7fe3f0e
commit c6a540000a
6 changed files with 33 additions and 23 deletions

18
source/Compiler.elna Normal file
View File

@ -0,0 +1,18 @@
MODULE Compiler;
FROM FIO IMPORT StdIn;
FROM SYSTEM IMPORT ADR;
FROM Lexer IMPORT Lexer, LexerDestroy, LexerInitialize;
FROM Transpiler IMPORT Transpile;
VAR
ALexer: Lexer;
BEGIN
LexerInitialize(ADR(ALexer), StdIn);
Transpile(ADR(ALexer));
LexerDestroy(ADR(ALexer))
END Compiler.