# 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 inline documentation it just shows where inline documentation # is located). def square(num): squaredNum = num * num return(squaredNum)