summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2021-01-05 02:39:50 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2021-01-05 02:39:50 +0100
commit23d8224704b76737e746c5add47aa4cd96a7fd01 (patch)
tree19ee7e6f1549f2d08b551f011b65b9e50360dace /content/fate_v1/computations/_index.md
parent8746de42d1fa1a71e7cca9353cb547cc12104f55 (diff)
Improves how topics collapse on the menu.
Diffstat (limited to 'content/fate_v1/computations/_index.md')
-rw-r--r--content/fate_v1/computations/_index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/fate_v1/computations/_index.md b/content/fate_v1/computations/_index.md
index e8a8816..9b835de 100644
--- a/content/fate_v1/computations/_index.md
+++ b/content/fate_v1/computations/_index.md
@@ -1,9 +1,8 @@
---
title: Computations
-weight: 2
+weight: 3
---
-Computations are values. They may read from the memory, but do not modify it
-(with a single exception).
+Computations are operations returning values. They do not modify the memory.
### TEXT
{{< fatecode >}}(text [C0 = COMPUTATION] ... [CN = COMPUTATION]){{< /fatecode >}}
@@ -36,7 +35,8 @@ Returns the value of the `{String}` field of the structure `[STRUCTURE]`.
### TEMPORARY VARIABLES
{{< fatecode >}}(let (({V0 = String} [C0 = COMPUTATION]) ... ({VN = String} [CN = COMPUTATION])) [R = COMPUTATION]){{< /fatecode >}}
-Defines a hierarchical level and local variables `V0` ... `VN` with values `C0` ... `CN`, and returns the value of `[R]`.
+Defines a hierarchical level and local variables `{V0}` ... `{VN}` with values
+`[C0]` ... `[CN]`, and returns the value of `[R]`.
### CAST
{{< fatecode >}}(cast [TYPE] [COMPUTATION*]){{< /fatecode >}}