This commit is contained in:
2025-10-10 18:01:38 +08:00
parent c07c64be1e
commit d58efb13e2
2 changed files with 200 additions and 130 deletions

View File

@@ -16,11 +16,21 @@ double i;
i = 2.0;
{
label(test);
i = Pow(i,2.0);
goto(100,i,test);
goto(true,func1);
goto(100>i,test);
}
string result;
result = i.ToString()+i.ToString();
double result;
result = i;
goto(true,end);
{
label(func1);
i = Pow(i,2.0);
back(true);
}
label(end);
", import);
Console.WriteLine($"Script executed successfully. Result: {result["result"].data}");
}