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;