yufmath 0.1.1

A Rust CAS Lib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # 命令行工具
//!
//! 本模块实现 Yufmath 的命令行界面,
//! 提供交互式计算和批处理功能。

pub mod commands;
pub mod interactive;
pub mod args;
pub mod progress;
pub mod terminal;

pub use args::CliArgs;
pub use commands::run_command;
pub use interactive::run_interactive;
pub use terminal::{init_terminal, supports_color, ColorConfig};