# Documentation at the header of the program (applies to the whole program). # Author: James Tam # Version: May 17, 2021 # Learning objective: seeing an example program that shows the location of inline # documentation for a function. # Inline documentation for function 'square' goes here. (This text doesn't # constitute acceptable documentation BTW it just shows where it's located). def square(num): squaredNum = num * num return(squaredNum)