diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-09-09 17:04:00 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-09-09 17:04:00 +0100 |
commit | b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b (patch) | |
tree | 0854216e80c920fc8f26b11d15574465fc792cc7 /language.md | |
parent | d24d92034ea278750668daff810147e0aec9dc04 (diff) | |
download | micro-lang-hs-b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b.tar.gz micro-lang-hs-b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b.zip |
Officially calling it just micro
Diffstat (limited to 'language.md')
-rw-r--r-- | language.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/language.md b/language.md index 4044ad1..2354ae5 100644 --- a/language.md +++ b/language.md @@ -39,7 +39,7 @@ TODO: entry point; `main` to be C compatible? ## Modules -A `micro2` file must start with the module name. +A Micro file must start with the module name. ``` # our main module (this is a comment) module main @@ -354,7 +354,7 @@ TODO: a zero ended array of u8 with special initializers ## Operators -Micro2 uses the same operators and almost the same operator precedence as C, from more to less priority: +Micro uses the same operators and almost the same operator precedence as C, from more to less priority: ``` ! - ~ |