Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMarkelov committed Aug 20, 2020
1 parent 028d2a2 commit 01403e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
haku (0.3.4) unstable; urgency=medium

* Allow hexadecimal number in expressions(including `for` sequence)

-- Vladimir Markelov <[email protected]> Wed, 19 Aug 2020 20:07:32 -0700

haku (0.3.3) unstable; urgency=medium

* New functions to process semantic versions: increment and comparison ones
Expand Down
6 changes: 4 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,10 @@ value that simplifies variable usage in conditions. The variable is `false` if:

#### Numbers

Only positive and negative decimal numbers are supported. Character `_` can be used to make
number more readable: e.g., `65_536` is the same as `65536`.
Supported number formats:

* positive and negative decimal numbers. Character `_` can be used to make number more readable: e.g., `65_536` is the same as `65536`;
* positive hexadecimal numbers. These numbers must start with "0x" or "0X" prefix.

#### Strings

Expand Down

0 comments on commit 01403e0

Please sign in to comment.