meadows 0.1.5

An experimental library written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// math.rs

//! Math module.
//!
//! There's not much we can do right now except test inline math such as
//! $\sum_{i=1}^{n} i = \frac{n(n+1)}{2}$.
//!
//! We can also test display math:
//!
//! $$
//! \sum_{i=1}^{n} i = \frac{n(n+1)}{2}
//! $$

/// Some math function.
pub fn some_math_function() {}

// EOF