A human being is representd here
A person must have a name, no matter how much Juliet may hate it
Returns a person with the name given them

# Arguments

* `foof` - A string slice that holds the name of the person

# Examples

```rust
// You can have rust code between fences inside the comments
// If you pass --test to `rustdoc`, it will even test it for you!
use doc::Person;
let person = Person::new("name");
```
Gives a friendly hello!

Says "Hello, [name]" to the `Person` it is called on.
