diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-09-07 16:26:50 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-09-07 16:26:50 +0100 |
commit | 65c8beecb14f6d09c49504d74beedd58cc7ddd17 (patch) | |
tree | 0a39cc6fc3f78153272c6528300936c039351d3e /src/Micro.hs | |
parent | 48896c56c39344fa429260d3969eccc93ef8035c (diff) | |
download | micro-lang-hs-65c8beecb14f6d09c49504d74beedd58cc7ddd17.tar.gz micro-lang-hs-65c8beecb14f6d09c49504d74beedd58cc7ddd17.zip |
Better project layout, removed warnings
Diffstat (limited to 'src/Micro.hs')
-rw-r--r-- | src/Micro.hs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Micro.hs b/src/Micro.hs new file mode 100644 index 0000000..c2c4f35 --- /dev/null +++ b/src/Micro.hs @@ -0,0 +1,16 @@ +module Micro + ( module Micro.Ast, + module Micro.Error, + module Micro.Env, + module Micro.Lexer, + module Micro.Parser, + module Micro.Compiler, + ) +where + +import Micro.Ast +import Micro.Compiler +import Micro.Env +import Micro.Error +import Micro.Lexer +import Micro.Parser |