Browse Source

docs(circle): improve functions prototypes consistency

pull/1541/head
mikysett 2 years ago committed by Michele
parent
commit
187028562b
  1. 28
      subjects/circle/README.md

28
subjects/circle/README.md

@ -23,31 +23,23 @@ Create the structures `Circle` and `Point`. You'll need to create the necessary
This snippets are incomplete, you'll need to complete them. You'll find some useful information in the [usage](#usage). This snippets are incomplete, you'll need to complete them. You'll find some useful information in the [usage](#usage).
```rust ```rust
#[derive(Debug)]
pub struct Circle { pub struct Circle {
center //.. pub center //..
radius //.. pub radius //..
} }
struct Point { impl Circle {
// ... // ...
} }
// Point #[derive(Debug)]
fn distance(p1, p2) -> _ { pub struct Point {
// ...
}
// Circle
fn new(x: f64, y: f64, radius: f64) -> Circle {
}
fn diameter(_) -> _ {
}
fn area() -> _ {
} }
fn intersect(self, other: ) -> bool { impl Point {
// ...
} }
``` ```

Loading…
Cancel
Save