Transpile type section

This commit is contained in:
2025-05-27 07:53:39 +02:00
parent 4c1b66f99e
commit 3d401e7dac
6 changed files with 198 additions and 33 deletions

View File

@ -1,10 +1,10 @@
MODULE Compiler;
module Compiler;
FROM FIO IMPORT StdIn;
FROM SYSTEM IMPORT ADR;
from FIO import StdIn;
from SYSTEM import ADR;
FROM Lexer IMPORT Lexer, LexerDestroy, LexerInitialize;
FROM Transpiler IMPORT Transpile;
from Lexer import Lexer, LexerDestroy, LexerInitialize;
from Transpiler import Transpile;
VAR
ALexer: Lexer;