Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
5a3bcf5f5be65737a93e3cc0e5efe18aed270e0b
/
.
/
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
;
}