## prepare()


Prepare an ingredient for cooking.


Usage


``` python
prepare(ingredient)
```


## Parameters


`ingredient: str`  
The ingredient to prepare.


## Returns


`dict`  
A dictionary with the prepared ingredient details.


## Examples

``` python
>>> prepare("tomato")
```

{'ingredient': 'tomato', 'status': 'prepared'}
