From a1c045f24dff50d50332f44cd5e4a44396e7ff67 Mon Sep 17 00:00:00 2001 From: Bryan English Date: Tue, 27 Jan 2026 23:50:38 -0500 Subject: [PATCH] support else (duh) --- hylo-lang/hyloc/src/ir.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/hylo-lang/hyloc/src/ir.rs b/hylo-lang/hyloc/src/ir.rs index 179566d..910cee6 100644 --- a/hylo-lang/hyloc/src/ir.rs +++ b/hylo-lang/hyloc/src/ir.rs @@ -120,6 +120,7 @@ impl ImportTree { "puts" => IR::PutS, "putn" => IR::PutN, "if" => IR::If, + "else" => IR::Else, "endif" => IR::EndIf, "=" => IR::Equals, ">" => IR::GreaterThan, -- 2.43.0