diff --git a/.cirrus.yml b/.cirrus.yml index 5e299b0..a40158a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -35,14 +35,9 @@ task: - GITHUB_TOKEN: ENCRYPTED[!b7770b286394d89374afd6ce2ef353693b8b922c6c0d6169c4e55fb926ea26507660d0759f6a2cdf2e2436e514742573!] - JUKA_TOKEN: Linux_X86 setup_script: - - dpkg --print-architecture - - dpkg --print-foreign-architectures - dpkg --add-architecture i386 - apt-get update - - apt-get install -y software-properties-common - - add-apt-repository universe - - apt-get update - - apt-get install -y wget curl libc6:i386 libncurses5:i386 libstdc++6:i386 libicu-dev:i386 libssl-dev:i386 zlib1g:i386 + - apt-get install -y wget curl libc6:i386 libncurses6:i386 libstdc++6:i386 libicu-dev:i386 libssl-dev:i386 zlib1g:i386 - mkdir /usr/share/dotnet - wget https://github.com/jukaLang/JukaPortLibraries/releases/download/JukaLibs/dotnet-sdk-8.0.204-linux-x86.tar.gz - tar xf dotnet-sdk-8.0.204-linux-x86.tar.gz -C /usr/share/dotnet/ diff --git a/src/JukaCompiler/Compiler.cs b/src/JukaCompiler/Compiler.cs index 5ce3adb..082c67e 100644 --- a/src/JukaCompiler/Compiler.cs +++ b/src/JukaCompiler/Compiler.cs @@ -55,6 +55,14 @@ public string CompileJukaCode(string data, bool isFile = true) Parser parser = new(new Scanner(data, _serviceProvider, isFile), _serviceProvider); List statements = parser.Parse(); + + foreach (var array in statements) + { + Console.WriteLine(array); + + + } + return Compile(statements); } catch (Exception ex)