formalang 0.0.5-beta

FormaLang compiler frontend: lexer, parser, semantic analyzer, and IR lowering.
Documentation
1
2
3
4
5
6
7
8
//! Lowering for literal, container and instantiation expressions:
//! `Literal`, `Array`, `Tuple`, `Dict{Literal,Access}`, struct/enum
//! instantiation and bare-function/struct invocation paths.

mod containers;
mod enums;
mod invocation;
mod literal;