From a91c9741e4e85df2fb1dae005c4b224c0b29ae49 Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Thu, 16 Oct 2025 10:25:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E8=87=AA=E5=8A=A8=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E8=BD=AC=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Convention/[FLEE] | 2 +- Convention/[RScript] | 2 +- [Test]/Program.cs | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Convention/[FLEE] b/Convention/[FLEE] index c9e2493..9082898 160000 --- a/Convention/[FLEE] +++ b/Convention/[FLEE] @@ -1 +1 @@ -Subproject commit c9e249379698b92caeeb9486ce07237f664f48ac +Subproject commit 90828989ad314808989605a159cb47d142b040d2 diff --git a/Convention/[RScript] b/Convention/[RScript] index 70051b4..3866cdd 160000 --- a/Convention/[RScript] +++ b/Convention/[RScript] @@ -1 +1 @@ -Subproject commit 70051b46a526730befb4748418dbf25fa6bfa135 +Subproject commit 3866cdd525175fc473dcaa9b1a539e20ebf176ae diff --git a/[Test]/Program.cs b/[Test]/Program.cs index 9a94f36..b3adf1e 100644 --- a/[Test]/Program.cs +++ b/[Test]/Program.cs @@ -1,5 +1,4 @@ using Convention.RScript; -using Flee.PublicTypes; using System; public class Program @@ -9,11 +8,13 @@ public class Program RScriptEngine engine = new(); RScriptImportClass import = new() { - typeof(Math) + typeof(Math), + }; + import.Add(typeof(ExpressionMath)); var result = engine.Run(@" -double i; -i = 2.0; +int i; +i = 2.2; label(test); goto(true,func1); goto(100>i,test);