nightshade

The nightshade programming language, compiler and tools (WIP)
Log | Files | Refs | README

commit accb758e5c8831964990d55af44601825f2fe3a7
parent 2f35ebb4da864399090c6e923425b560ae04aa7b
Author: citbl <citbl@citbl.org>
Date:   Fri, 12 Jun 2026 20:44:50 +1000

sem init

Diffstat:
Msrc/nightshade.adb | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nightshade.adb b/src/nightshade.adb @@ -3,6 +3,7 @@ with Ada.Command_Line; use Ada.Command_Line; with Utils; with Lexer; with Parser; +with Sem; procedure Nightshade is begin @@ -20,7 +21,6 @@ begin begin Lexer.Lex (L); Lexer.Print_Tokens (L); - Put_Line ("done lexing"); declare P : Parser.Parser := Parser.Init (File_Name_Ref, Src_Ref, L.Tokens);