From 5d48b5d7918e1054bdff95f6731a429792ee83f9 Mon Sep 17 00:00:00 2001 From: Sean Kessler Date: Fri, 23 Feb 2024 12:04:26 -0500 Subject: [PATCH] TRD-0001 Commit Latest --- AxiomConsole/Program.cs | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/AxiomConsole/Program.cs b/AxiomConsole/Program.cs index 408b681..28909e4 100644 --- a/AxiomConsole/Program.cs +++ b/AxiomConsole/Program.cs @@ -1,9 +1,6 @@ using System; -using System.Linq; using System.Collections.Generic; -using Axiom.Utils; using Axiom.Interpreter; -using System.IO; namespace AxiomConsole { @@ -12,12 +9,19 @@ namespace AxiomConsole static void Main(string[] args) { -// String expression=@" -// A=1; -// WHILE(A<10) -// { -// IF(A==1)THEN break; -// }"; + //String expression=@" + // A=1; + // B=1; + // WHILE(A<10) + // { + // WHILE(B<10) + // { + // IF(B==1)THEN BREAK; + // B=B+1; + // } + // IF(A==1)THEN BREAK; + // A=A+1; + // }"; String expression=@" A=1; B=1;