flash 0.0.6

Shell parser, formatter, and interpreter with Bash support
Documentation
/*
 * Copyright (c) 2025 Raphael Amorim
 *
 * This file is part of flash, which is licensed
 * under GNU General Public License v3.0.
 */

pub mod lexer;
pub mod parser;

// mod lexer_simd;
// mod simd;

#[cfg(feature = "interpreter")]
pub mod completion;
#[cfg(feature = "interpreter")]
pub mod environment_integration;
#[cfg(feature = "interpreter")]
pub mod flash;
#[cfg(feature = "formatter")]
pub mod formatter;
#[cfg(feature = "interpreter")]
pub mod interpreter;