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 /README.md | |
parent | d24d92034ea278750668daff810147e0aec9dc04 (diff) | |
download | micro-lang-hs-b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b.tar.gz micro-lang-hs-b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b.zip |
Officially calling it just micro
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,8 +1,8 @@ -# Micro2 +# Micro This is not necessarily related to [Micro](https://git.usebox.net/micro-lang/about/), but I couldn't find a better name. -Micro2 is a small statically typed toy programming language. +Micro is a small statically typed toy programming language. Objectives: @@ -28,14 +28,14 @@ Currently the compiler uses parsec (Monadic parser combinators) following this p * Backend - Generator: emit intermediate code for the target (e.g. ASM files); (maybe) Intermediate representation -For updates, please check [micro2 website](https://git.usebox.net/micro2-lang/about/). +For updates, please check [Micro website](https://git.usebox.net/micro2-lang/about/). ## How to build it Requires Haskel and Cabal: ``` -cabal run micro2 +cabal run micro ``` To run the tests use: @@ -50,7 +50,7 @@ TODO ### How does it look like? -This is an example of a micro2 program: +This is an example of a Micro program: ``` def fib(n: u16): u16 { |