nalgebra/nalgebra-macros/tests/tests.rs

8 lines
118 B
Rust
Raw Normal View History

use nalgebra_macros::matrix;
#[test]
fn basic_usage() {
2021-04-11 17:08:41 +08:00
matrix![ 1, 3;
4, 5*3;
3, 3];
}