Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
microsoft
Edit Copy
Star
GitHub Repository:
microsoft/vscode
Path:
blob/main/extensions/copilot/test/simulation/fixtures/tests/simple-ts-proj/src/math.ts
1
3
4
0
6
views
1
export
function
subtract
(
a
:
number
,
b
:
number
)
{
2
return
a
-
b
;
3
}
4
5