| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-12-22 23:34:09 +0100 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-12-22 23:34:09 +0100 | 
| commit | 7272d83113545ec46b35ea440811dfc7da7634e1 (patch) | |
| tree | 40642cdafdf859c63e0c8e3b6d02d3e4ba8eabf7 /content/fate_v1/instructions/conditionals | |
| parent | 563f9cab92c48a2bd003c10248f21007e5ff64e6 (diff) | |
...
Diffstat (limited to 'content/fate_v1/instructions/conditionals')
| -rw-r--r-- | content/fate_v1/instructions/conditionals/_index.md | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/content/fate_v1/instructions/conditionals/_index.md b/content/fate_v1/instructions/conditionals/_index.md index e129b1b..39a51b3 100644 --- a/content/fate_v1/instructions/conditionals/_index.md +++ b/content/fate_v1/instructions/conditionals/_index.md @@ -11,9 +11,9 @@ local variables' point of view.  Executes `[INSTRUCTION]` if, and only if, `[BOOL]` yields true.  ### IF-ELSE -{{< fatecode >}}(if_else [BOOL] <IF_TRUE = INSTRUCTION> <IF_FALSE = INSTRUCTION>){{< /fatecode >}} +{{< fatecode >}}(if_else [BOOL] [IF_TRUE = INSTRUCTION] [IF_FALSE = INSTRUCTION]){{< /fatecode >}} -Executes `<IF_TRUE>` if `[BOOL]` yields true, but `<IF_FALSE>` if it does not. +Executes `[IF_TRUE]` if `[BOOL]` yields true, but `[IF_FALSE]` if it does not.  ### COND  {{< fatecode >}}(cond ([C0 = BOOL] [I0 = INSTRUCTION]) ... ([CN = BOOL] [IN = INSTRUCTION])){{< /fatecode >}} | 


