Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
f0861fb8a37bf5bb835b36bd1ba9871fd6e32c69
/
.
/
build_tests
/
basic.ts
blob: 6ddac492d3f597439749c738abd6c3af0af386fd [
file
] [
log
] [
blame
]
/**
* Computes the sum of the input values
*/
export
function
add
(
x
:
number
,
y
:
number
):
number
{
return
x
+
y
;
}