fixed formatting in README.md

This commit is contained in:
hyung-hwan 2023-07-04 13:00:01 +09:00
parent 649f728aa6
commit 58f645f96f

View File

@ -186,35 +186,52 @@ can be followed by e or E, and optionally a series of numeric digits with a
optional single sign letter. A floating-point number may begin with a floting optional single sign letter. A floating-point number may begin with a floting
point with a preceeding number. point with a preceeding number.
- 369 # integer - `369` # integer
- 3.69 # floating-pointe number - `3.69` # floating-pointe number
- 13. # 13.0 - `13.` # 13.0
- .369 # 0.369 - `.369` # 0.369
- 34e-2 # 34 * (10 ** -2) - `34e-2` # 34 * (10 ** -2)
- 34e+2 # 34 * (10 ** 2) - `34e+2` # 34 * (10 ** 2)
- 34.56e # 34.56 - `34.56e` # 34.56
- 34.56E3 - `34.56E3`
An integer can be prefixed with 0x, 0, 0b for a hexa-decimal number, an octal An integer can be prefixed with 0x, 0, 0b for a hexa-decimal number, an octal
number, and a binary number respectively. For a hexa-decimal number, letters number, and a binary number respectively. For a hexa-decimal number, letters
from A to F can form a number case-insenstively in addition to numeric digits. from A to F can form a number case-insenstively in addition to numeric digits.
- 0xA1 # 161 - `0xA1` # 161
- 0xB0b0 # 45232 - `0xB0b0` # 45232
- 020 # 16 - `020` # 16
- 0b101 # 5 - `0b101` # 5
If the prefix is not followed by any numeric digits, it is still a valid token If the prefix is not followed by any numeric digits, it is still a valid token
and represents the value of 0. and represents the value of 0.
- 0x # 0x0 but not desirable. - `0x` # 0x0 but not desirable.
- 0b # 0b0 but not desirable. - `0b` # 0b0 but not desirable.
### Modules ### Modules
Hawk supports various modules. Hawk supports various modules.
### Hawk
- hawk::array
- hawk::call
- hawk::cmgr_exists
- hawk::function_exists
- hawk::gc
- hawk::gc_get_threshold
- hawk::gc_set_threshold
- hawk::gcrefs
- hawk::hash
- hawk::isarray
- hawk::ismap
- hawk::isnil
- hawk::map
- hawk::modlibdirs
- hawk::typename
- hawk::GC_NUM_GENS
#### String #### String
The *str* module provides an extensive set of string manipulation functions. The *str* module provides an extensive set of string manipulation functions.
@ -253,7 +270,7 @@ The *str* module provides an extensive set of string manipulation functions.
#### System #### System
The *sys* module provides various functions concerning the underlying operation system. The `sys` module provides various functions concerning the underlying operation system.
- sys::chmod - sys::chmod
- sys::close - sys::close