rusticle/
lib.rs

1//! # Rusticle - A high-performance Rust library for numerical computing
2//! 
3//! Hello, and welcome to the only Rust library you'll ever need for math.
4//! 
5//! This library provides a comprehensive set of tools for numerical computing,
6//! including support for complex numbers, linear algebra, and more.
7
8pub mod core;
9
10// Global exports
11pub use core::{ Complex, Vector, Matrix };