elite/lib.rs
1// MIT License
2//
3// Copyright (c) 2021 Ferhat Geçdoğan All Rights Reserved.
4// Distributed under the terms of the MIT License.
5//
6//
7
8pub mod parser;
9pub mod read;
10pub mod lexer;
11pub mod tokenizer;
12pub mod ast;
13pub mod logger;
14
15pub static VERSION: f32 = 0.1;
16
17pub static VALID_VERSIONS: &'static [f32] = &[
18 0.1
19];