about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2022-03-18 20:55:41 +0000
committerDaniel Santos <dacs.git@brilhante.top>2022-03-18 20:55:41 +0000
commit3020dad2ff0c0a3d100ec193d0b51fdb5198563d (patch)
tree8c4807b092ec72ee2d9518fd9bd5a43f81c7a476 /README.md
parent32fbc9c08c95658fab3b31c71583642847b552aa (diff)
downloadnumericx-c-3020dad2ff0c0a3d100ec193d0b51fdb5198563d.tar.gz
README.md change c compiler text
 * in README.md change 'c99' compiler to 'cc' compiler

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 70a0c9d..b8b7442 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ if you want the units place of this numerical system to be on the right side, us
 
 Now, to create the executable to translate a number for these two numerical system, join all of this together and compile using this:
 ```
-$ c99 -DFROM_NUMERICALS=\"0123456789abcdef\" -DFROM_FIRST_NUMBER_VOID -DFROM_INFINITE_BASE -DFROM_UNITS_ON_THE_END -DTO_NUMERICALS=\"123\" -DTO_UNITS_ON_THE_END numericx.c -o hex-to-ternary
+$ cc -DFROM_NUMERICALS=\"0123456789abcdef\" -DFROM_FIRST_NUMBER_VOID -DFROM_INFINITE_BASE -DFROM_UNITS_ON_THE_END -DTO_NUMERICALS=\"123\" -DTO_UNITS_ON_THE_END numericx.c -o hex-to-ternary
 ```
 
 This creates the `hex-to-ternary` executable with can be used to convert numbers from hexadecimal to ternary!