Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
3aa49abc55df0f9d4d1a46f5296f151cc0600a4f
/
.
/
build_tests
/
basic.ts
blob: 6ddac492d3f597439749c738abd6c3af0af386fd [
file
] [
log
] [
blame
]
Philipp Schrader
5404796
2022-02-16 21:05:11 -0800
[
diff
] [
blame
]
1
/**
2
* Computes the sum of the input values
3
*/
4
export
function
add
(
x
:
number
,
y
:
number
):
number
{
5
return
x
+
y
;
6
}