add package tests

This commit is contained in:
2025-12-03 20:04:25 -05:00
parent e96fcdbe99
commit fe01277f7b
4 changed files with 376 additions and 6 deletions

View File

@@ -21,6 +21,6 @@ fn main() -> eframe::Result<()> {
eframe::run_native(
"(Yet-to-be-named) Graphing Software",
eframe::NativeOptions::default(),
Box::new(|cc| Box::new(math_app::MathApp::new(cc))),
Box::new(|cc| Ok(Box::new(math_app::MathApp::new(cc)))),
)
}