File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,12 @@ Please see [this](#examples) example with most of the simpleflow script features
8282
8383
8484### Variables <a name =" variables " ></a >
85- $\color{skyblue}{Syntax}$
8685``` fsharp
8786let <variablename> = expression
8887```
8988> <small > Expressions can be used with only variable. Anywhere else you need expression then declare variable, assign expression and use it.</small >
9089
91- ** Modify value of a variable**
92- $\color{skyblue}{Syntax}$
90+ ** Modify value of a variable** <br >
9391``` csharp
9492[partial ] set < variablename > = expression
9593```
@@ -164,7 +162,6 @@ let v = 2 + 3 * (3 * arg.value);
164162** Context Properties:** context.HasErrors, context.HasMessages context.HasOutput
165163
166164### Rule Control Flow
167- $\color{skyblue}{Syntax}$
168165``` csharp
169166rule when < predicate > then
170167 < statement .. 1 >
@@ -186,7 +183,6 @@ declare variable and write expression and use that variable in predicate. This d
186183| exit | exit |
187184
188185### Functions
189- $\color{skyblue}{Syntax}$
190186``` csharp
191187$< function_name > (param_name1 : value1 , param_name2 : value2 , .. .)
192188```
You can’t perform that action at this time.
0 commit comments