You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,10 @@ In addition to boolean expressions, sepcial contants `True` and `False` may be u
130
130
131
131
Do not double-quote them, or they will become plain strings!
132
132
133
+
## MultiValue
134
+
135
+
This is container `Value`. It can contain zero or any number of `Value`'s. Currently, this is only truly useful with functions, mostly because it is yet undecided how to define what operations would mean on a `MultiValue`.
@@ -144,6 +148,7 @@ Do not double-quote them, or they will become plain strings!
144
148
* Go classifies bit shift operators with the higher `*`.
145
149
*`&&` is synonymous of `And`.
146
150
*`||` is synonymous of `Or`.
151
+
* Worded operators such as `And` and `Or` are **case-sensitive** and must be followed by a blank character. `True Or (False)` is a Bool expression with the `Or` operator but `True Or(False)` is an invalid expression attempting to call a user-defined function called `Or()`.
0 commit comments