We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0a42de commit b8a7d95Copy full SHA for b8a7d95
src/extension.ts
@@ -219,6 +219,17 @@ export async function activate(context: vscode.ExtensionContext) {
219
)
220
221
registerUriHandler()
222
+
223
+ function helloWorld() {
224
+ const text = 'hello world'
225
+ console.log(text)
226
227
+ return text
228
+ }
229
230
+ return {
231
+ helloWorld,
232
233
}
234
235
export function deactivate() {
0 commit comments