mirror of
https://github.com/PaddiM8/kalker.git
synced 2025-03-05 08:41:10 +01:00
Previously, eg. "dx" would not be parsed as "dx" after a function, since the parser did not keep track of whether or not it was currently inside an integral or not, properly. This commit fixes that, and also makes it possible to use any variable after the "d", eg. "dy". The integration function was also put in its own file: calculus.rs.
11 lines
152 B
Rust
11 lines
152 B
Rust
pub mod ast;
|
|
mod calculus;
|
|
mod interpreter;
|
|
mod inverter;
|
|
pub mod kalk_num;
|
|
mod lexer;
|
|
pub mod parser;
|
|
mod prelude;
|
|
mod symbol_table;
|
|
mod test_helpers;
|