summaryrefslogtreecommitdiff
path: root/runtime/examples/hello_runtime_bootstrap.js
blob: 759dde9395fd6f7fe7476138cf137a7c315d248d (plain)
1
2
3
4
5
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
function hello() {
  console.log("Hello from extension!");
}
globalThis.Extension = { hello };