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
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -215,4 +215,33 @@ true
215
215
```
216
216
###>(arg1, arg2)
217
217
218
+
The *>()* function, also called the greater than function compares two numbers and returns true if the left hand argument is greater than the right hand argument.
219
+
218
220
###<(arg1, arg2)
221
+
222
+
The *<()* function, also called the less than function compares two numbers and returns true if the left hand argument is less than the right hand argument.
223
+
224
+
###<=(arg1, arg2)
225
+
226
+
The *<=()* function, also called the less than or qual to function compares two numbers and returns true if the left hand argument is less than or equal to the right hand argument.
227
+
228
+
###>=(arg1, arg2)
229
+
230
+
The *>=()* function, also called the less than or qual to function compares two numbers and returns true if the left hand argument is less than or equal to the right hand argument.
231
+
232
+
Here are some examples:
233
+
234
+
```
235
+
>> <(3, 5)
236
+
true
237
+
>> <(3, **(2, 6))
238
+
true
239
+
>> ==(
240
+
.. ==(1, 3), >(200, 4)
241
+
.. )
242
+
false
243
+
```
244
+
245
+
### ||(...)
246
+
247
+
The *||()* function is the logical OR function. It takes an arbitrary number of expressions that evaluate to booleans
0 commit comments