kalker/kalk/src/lib.rs
bakk 0dc2e0572f Fixed "dx" in integrals, and created calculus.rs
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.
2021-05-17 16:51:16 +02:00

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;