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-js-proj copy/src/index.js
1
3
4
0
6
views
1
export
function
add
(
a
,
b
)
{
2
return
a
+
b
;
3
}
4
5
function
subtract
(
a
,
b
)
{
6
return
a
-
b
;
7
}
8
9