diff --git a/doc/Expr.html b/doc/Expr.html index ada312e..ac4d953 100644 --- a/doc/Expr.html +++ b/doc/Expr.html @@ -1272,14 +1272,22 @@ dev-expr -- Expressions calculator v1.10.0
Examples

>>> [1,2,3] // List of integers
-[1, 2, 3] ->>> ["one", "two", "three"] // List of strings
-["one", "two", "three"] ->>> ["one", 2, false, 4.1] // List of mixed-types
-["one", 2, false, 4.1] ->>> ["one"+1, 2.0*(9-2)] // List of expressions
-["one1", 14] ->>> [ [1,"one"], [2,"two"]] // List of lists
+[1, 2, 3]

+ +
+

>>> ["one", "two", "three"] // List of strings
+["one", "two", "three"]

+
+
+

>>> ["one", 2, false, 4.1] // List of mixed-types
+["one", 2, false, 4.1]

+
+
+

>>> ["one"+1, 2.0*(9-2)] // List of expressions
+["one1", 14]

+
+
+

>>> [ [1,"one"], [2,"two"]] // List of lists
[[1, "one"], [2, "two"]]

@@ -1360,20 +1368,34 @@ dev-expr -- Expressions calculator v1.10.0
Items of list

>>> [1,2,3].1
-2 ->>> list=[1,2,3]; list.1
-2 ->>> ["one","two","three"].1
-two ->>> list=["one","two","three"]; list.(2-1)
-two ->>> list.(-1)
-three ->>> list.(10)
-Eval Error: [1:9] index 10 out of bounds ->>> #list
-3 ->>> index=2; ["a", "b", "c", "d"].index
+2

+ +
+

>>> list=[1,2,3]; list.1
+2

+
+
+

>>> ["one","two","three"].1
+two

+
+
+

>>> list=["one","two","three"]; list.(2-1)
+two

+
+
+

>>> list.(-1)
+three

+
+
+

>>> list.(10)
+Eval Error: [1:9] index 10 out of bounds

+
+
+

>>> #list
+3

+
+
+

>>> index=2; ["a", "b", "c", "d"].index
c

@@ -1973,7 +1995,7 @@ These operators have a high priority, in particular higher than the operator