TRD-0001 Commit Latest

This commit is contained in:
2024-02-23 12:04:26 -05:00
parent 50b3d04d87
commit 5d48b5d791

View File

@@ -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;