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