%Author: your name here, login name here, lab section, lab01, TA: your TA's name here
%Description: calculates the area of a circle given the radius
%Examples: circleArea(5) = 78.5
% add another example
% add another example
function outputValue = circleArea(radius)
  outputValue = pi * radius ^ 2;