My task:
These three functions must be in a single file:
- Write a function named `square` that squares an int.
- Write a function named `square` that squares a double.
- Write a function named `square` that takes in an int and a char, and prints out a square of that char, with the int as the side length.
- Example: square(5, '*') will print out a 5x5 square of asterisks.
so far I have accomplised: