## cook()


Cook a dish from the given recipe.


Usage


``` python
cook(recipe)
```


## Parameters


`recipe: str`  
The name of the recipe to cook.


## Returns


`dict`  
A dictionary describing the cooked dish.


## Examples

``` python
>>> cook("pasta")
```

{'dish': 'pasta', 'status': 'cooked'}
