## serve()


Serve a prepared dish.


Usage


``` python
serve(dish)
```


## Parameters


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


## Returns


`str`  
A message indicating the dish has been served.


## Examples

``` python
>>> serve({"name": "pasta"})
```

'Serving pasta'
