diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-06-21 21:15:03 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-06-21 21:15:03 +0200 |
commit | 511915adb65e6616e3ba3bae4cb61f6c708560c1 (patch) | |
tree | 26d91a15ae710764b7d31df35269c2c0ec68d5ed /README.md | |
parent | be3eac94b495a015541907d035044a1687aaa4b1 (diff) |
Boolean literals and comparison operators
Changelog: Added `True` and `False` literals, and comparison operators for boolean values
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -179,6 +179,7 @@ let re2 = /$str$re1/ # match '.' followed by any character #### boolean Result of comparison operators `==` and `/=`. +Values are `True` and `False`. #### network |