/**
 * Returns the sum of two values
 *
 * @param a - A number as a term
 * @param b - A number as a term
 * @returns The sum of the two params
 *
 */
export function add(a:number, b:number) {
   return a+b
}     
