tinyscript 0.6.1

Tiny, C-like scripting language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright © 2025 Stephan Kunz
//! Bytecode compiler implementation.

mod error;
mod lexer;
mod parselets;
mod parser;
mod precedence;
mod token;

// flatten
pub use error::CompilationError;
pub use lexer::Lexer;
pub use parser::Parser;
pub use token::TokenKind;