## swapprog
### Instructions
- Write a function that swaps the contents of two **pointers to an int** (`*int`).
### Expected function
```go
func Swap(a *int, b *int) {
}
```