__tests__/manuscript/chapter03.txt

## Let's talk about Functions
 
```ps
function test {
    $n = "World"
    "Hello "
}
```
 
### Example Usage:
 
```powershell
PS C:\> test "World"
 
```