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