Skip to content

Commit b8a7d95

Browse files
committed
expose dummy hello world function
1 parent c0a42de commit b8a7d95

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/extension.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,17 @@ export async function activate(context: vscode.ExtensionContext) {
219219
)
220220

221221
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+
}
222233
}
223234

224235
export function deactivate() {

0 commit comments

Comments
 (0)