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).
```rust
#[derive(Debug)]
pub struct Circle {
center //..
radius //..
pub center //..
pub radius //..
}
struct Point {
// ...
impl Circle {
// ...
}
// Point
fn distance(p1, p2) -> _ {
}
// Circle
fn new(x: f64, y: f64, radius: f64) -> Circle {
}
fn diameter(_) -> _ {
}
fn area() -> _ {
#[derive(Debug)]
pub struct Point {
// ...
}
fn intersect(self, other: ) -> bool {
impl Point {
// ...
}
```

Loading…
Cancel
Save