File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -557,14 +557,6 @@ Here is the list of available assignation operator
557557 |[<<=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/left-shift-assignment-operator)|Supported|
558558 |[>>=](https:// docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/right-shift-assignment-operator)|Supported|
559559
560- ## Scripts
561- In addition to simple expression evaluation you can also evaluate small script with the method :
562- ```C#
563- // object ScriptEvaluate(string script)
564- evaluator.ScriptEvaluate(script);
565- ```
566- Scripts are just a serie of expressions to evaluate separated with a ; character and leaded by severals additionals keywords .
567-
568560To declare a variable types are not yet supported and are for now dynamically deduced.
569561
570562```C#
@@ -583,6 +575,15 @@ for(i = 0; i < 10; i++)
583575.. .
584576```
585577
578+ ## Scripts
579+ In addition to simple expression evaluation you can also evaluate [small scripts ](#small - scripts ) with the method :
580+ ```C #
581+ // object ScriptEvaluate(string script)
582+ evaluator .ScriptEvaluate (script );
583+ ```
584+ Scripts are just a serie of expressions to evaluate separated with a ; character and leaded by severals additionals keywords .
585+
586+
586587### Script keywords
587588
588589Currently the following script keywords are supported
You can’t perform that action at this time.
0 commit comments