summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-12-28 02:59:31 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-12-28 02:59:31 +0100
commit3b820907588131712bd2991dc751329530df8a6a (patch)
tree315563874910ff1325f36341daaf1b4faded5fb7 /content/fate_v1/instructions/_index.md
parentb5b30786abdb77dc0c1f9ed1be6d9c594b398b1a (diff)
Some "rich text" -> "text"; new sequence stuff.
Diffstat (limited to 'content/fate_v1/instructions/_index.md')
-rw-r--r--content/fate_v1/instructions/_index.md20
1 files changed, 12 insertions, 8 deletions
diff --git a/content/fate_v1/instructions/_index.md b/content/fate_v1/instructions/_index.md
index ec5b413..95ee992 100644
--- a/content/fate_v1/instructions/_index.md
+++ b/content/fate_v1/instructions/_index.md
@@ -30,18 +30,22 @@ Gives the value `[COMPUTATION]` to `[REFERENCE]`.
### VISIT SEQUENCE
{{< fatecode >}}(visit {String} [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
-Visits the sequence named `{String}`, with `C0` ... `CN` as arguments. That
-sequence does not need to already have been defined. Visiting a sequence means
-that the execution of the current sequence continues once the visited sequence
-has completed.
+{{< fatecode >}}(visit [SEQUENCE] [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
+
+Visits the sequence named `{String}` (or stored in `[SEQUENCE]`), with `C0` ...
+`CN` as arguments. That sequence does not need to already have been defined.
+Visiting a sequence means that the execution of the current sequence continues
+once the visited sequence has completed.
### JUMP TO SEQUENCE
{{< fatecode >}}(jump_to {String} [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
-Jumps to the sequence named `{String}`, with `C0` ... `CN` as arguments. That
-sequence does not need to already have been defined. Jumping to a sequence means
-that the execution of the current sequence is replaced by that of the target
-sequence.
+{{< fatecode >}}(jump_to [SEQUENCE] [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
+
+Jumps to the sequence named `{String}` (or stored in `[SEQUENCE]`), with `C0`
+... `CN` as arguments. That sequence does not need to already have been
+defined. Jumping to a sequence means that the execution of the current sequence
+is replaced by that of the target sequence.
### INSTRUCTION LIST
{{< fatecode >}}([C0 = INSTRUCTION] ... [CN = INSTRUCTION]){{< /fatecode >}}