Skip to content

Commit 5cc77fc

Browse files
committed
doc changes
1 parent 9e9378f commit 5cc77fc

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff 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-
568560
To 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

588589
Currently the following script keywords are supported

0 commit comments

Comments
 (0)