feat: re-export unit functions to subject level

This commit is contained in:
rzmk 2023-09-21 16:35:16 -04:00
parent 2ef7302a1c
commit c63e973140
No known key found for this signature in database
5 changed files with 16 additions and 94 deletions

View file

@ -31,7 +31,7 @@ ladderz = { git = "https://github.com/rzmk/ladderz", branch = "main" }
Now in `src/main.rs` let's replace the contents with the following code:
```rust
use ladderz::pre_algebra::unit1::{get_factor_pairs, get_factors};
use ladderz::pre_algebra::{get_factors, get_factor_pairs};
use std::env;
fn main() {