Skip to content

Commit 319b717

Browse files
committed
update
1 parent 3d42da2 commit 319b717

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,4 +215,33 @@ true
215215
```
216216
###>(arg1, arg2)
217217

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+
218220
###<(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

Comments
 (0)