6 lines
83 B
Rust
6 lines
83 B
Rust
|
use nalgebra_macros::matrix;
|
||
|
|
||
|
fn main() {
|
||
|
matrix![1, 2, 3;
|
||
|
4, 5];
|
||
|
}
|