__tests__/manuscript/chapter01.txt

## Let's talk about variables
 
All variables start with a `$`.
 
```ps
$a=1
$a++
$a
```
 
Prints
 
```powershell
2
```