## serve()


Serve a cooked dish.


Usage


``` python
serve(dish)
```


## Parameters


`dish: dict`  
A dictionary describing the dish to serve.


## Returns


`str`  
A message confirming the dish was served.


## Examples

``` python
>>> serve({"dish": "pasta", "status": "cooked"})
```

'Serving pasta'
