blob: 6ddac492d3f597439749c738abd6c3af0af386fd [file] [log] [blame]
Philipp Schrader54047962022-02-16 21:05:11 -08001/**
2 * Computes the sum of the input values
3 */
4export function add(x: number, y: number): number {
5 return x + y;
6}