aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 0a5ebde1f0a06fe5090978a6ac1faaa3562cfad9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
// clippy::cargo seems to be broken with rls currently
// #![warn(clippy::cargo)]
#![allow(clippy::collapsible_if)]
#![allow(clippy::if_not_else)]
// match_same_arms is buggy, doesn't notice differences due to match arm order
#![allow(clippy::match_same_arms)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::multiple_crate_versions)]
#![allow(clippy::single_match)]
#![allow(clippy::write_with_newline)]

mod builtins;
mod eval;
mod parser;
mod process;
mod readline;
mod repl;

fn main() {
    repl::repl();
}