diff options
author | Daniel Santos <dacs.git@brilhante.top> | 2022-03-19 18:40:11 +0000 |
---|---|---|
committer | Daniel Santos <dacs.git@brilhante.top> | 2022-03-19 18:40:11 +0000 |
commit | 23ba97c49bb9ab300b22fcf66399d3eed1845949 (patch) | |
tree | 57a449f849a5a75f82494588312ed3c99d539f0a | |
parent | dc910012f927af52758411378932bd5a9349372f (diff) | |
download | numericx-c-23ba97c49bb9ab300b22fcf66399d3eed1845949.tar.gz |
README.md: remove DEBUG flag
* remove `DEBUG` compiler flag text * improve some UI of README.md Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md index b8b7442..0df7a21 100644 --- a/README.md +++ b/README.md @@ -48,12 +48,12 @@ Below, are the meanings of the `FROM` flags. The `TO` flags are the same as the |Flag|Meaning| |---|---| -|FROM_NUMERALS|Define the numerical system numerals of the 'from'| -|FROM_UNITS_ON_THE_END|Defines the units case to be on the end (on the right) for the 'from'| -|FROM_FIRST_NUMBER_VOID|Defines the first number as a "not counting" for the 'from'| -|FROM_INFINITE_BASE|Defines the first number to be infinite, for the 'from' (for example, if the first numeral is 0, then 0 == 00 == 000 == 0000 ... . Or if the first numeral is 1, then 1 == 11 == 111 ...)| +|`FROM_NUMERALS`|Define the numerical system numerals of the 'from'| +|`FROM_UNITS_ON_THE_END`|Defines the units case to be on the end (on the right) for the 'from'| +|`FROM_FIRST_NUMBER_VOID`|Defines the first number as a "not counting" for the 'from'| +|`FROM_INFINITE_BASE`|Defines the first number to be infinite, for the 'from' (for example, if the first numeral is 0, then 0 == 00 == 000 == 0000 ... . Or if the first numeral is 1, then 1 == 11 == 111 ...)| -There is also the `DEBUG` flag, which will show all the steps that you number walked through. Remember: you use `-DDEBUG` as an compiler argument. +Remember: you use put a `-D` before these flags names as an compiler argument. For example, `-DFROM_NUMERALS=...`. ## Documentation |