package calculator.model.unaryOperations;

import calculator.model.*;

public class Square extends UnaryOperation
{
    public double operateUnary(double operand)
    {
        return (operand * operand);
    }
}
