summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2024-05-15 22:28:31 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2024-05-17 19:35:21 +0200
commitd8418e42499e3642a8714ef11746758bfd35c5c4 (patch)
tree484e384a675f497e3a75506da434c6cd27bd339f
parentde0f020b2ca5556f317032c30ac9838b4da7a75b (diff)
README: process members and lists
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 750b44d..e0eb73c 100644
--- a/README.md
+++ b/README.md
@@ -183,8 +183,21 @@ Members:
Represents running process. Created by `spawn`, used by `send` and `expect` commands.
+Members:
+
+`node`: node on which the process is running
+
#### list
+Lists are written using bracket notation:
+```
+let numbers = [1, 2, 4]
+```
+
+List elements can be of any type, but all elements of a particular list must have the same type.
+
+Used in the `for` command.
+
### Build-in commands
```