Browse Source

docs(matrix_ops): remove imports form example

pull/2639/head
miguel 2 months ago committed by MSilva95
parent
commit
cb5fdb9992
  1. 4
      subjects/matrix_ops/README.md

4
subjects/matrix_ops/README.md

@ -11,9 +11,6 @@ You will be reusing your `Matrix` and `Scalar` structures defined in the [matrix
### Expected Function
```rust
use crate::{Matrix, Scalar};
use std::ops::{ Add, Sub };
impl Add for Matrix {
}
@ -28,6 +25,7 @@ impl Sub for Matrix {
Here is a program to test your function
```rust
// Importing Matrix by defining it as a dependency in Cargo.toml
use matrix_ops::*;
fn main() {

Loading…
Cancel
Save