nalgebra/nalgebra-macros/tests/tests.rs
2021-05-03 13:52:34 +02:00

8 lines
118 B
Rust

use nalgebra_macros::matrix;
#[test]
fn basic_usage() {
matrix![ 1, 3;
4, 5*3;
3, 3];
}