From: Bryan English Date: Wed, 28 Jan 2026 04:50:38 +0000 (-0500) Subject: support else (duh) X-Git-Url: https://rethought.computer/gitweb//gitweb//git?a=commitdiff_plain;h=a1c045f24dff50d50332f44cd5e4a44396e7ff67;p=sorel-lang.git support else (duh) --- 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,