Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/fixtures/tests/panel/tsq/foo.ts
13406 views
1
export function multiply(a: number, b: number): number {
2
return a * b;
3
}
4
5
export function add(a: number, b: number): number {
6
return a + b;
7
}
8
export function subtract(a: number, b: number): number {
9
return a - b;
10
}
11
12