dust/dust-lang/src/lib.rs

23 lines
560 B
Rust
Raw Normal View History

2024-07-15 20:42:49 +00:00
/**
The Dust programming language.
Dust is a statically typed, interpreted programming language.
The [interpreter] module contains the `Interpreter` struct, which is used to lex, parse and/or
2024-07-15 20:42:49 +00:00
interpret Dust code. The `interpret` function is a convenience function that creates a new
`Interpreter` and runs the given source code.
*/
2024-03-25 04:16:55 +00:00
pub mod identifier;
2024-08-04 00:23:52 +00:00
pub mod lex;
pub mod parse;
pub mod token;
pub mod r#type;
2024-02-26 21:27:01 +00:00
pub mod value;
2024-02-23 12:40:01 +00:00
2024-08-04 00:23:52 +00:00
pub use identifier::Identifier;
pub use r#type::Type;
2024-08-04 00:23:52 +00:00
pub use token::Token;
2024-06-26 20:24:41 +00:00
pub use value::Value;
2024-08-04 00:23:52 +00:00
pub type Span = (usize, usize);