mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
66fd6f2866
Better example to close https://github.com/denoland/deno/issues/22600 --------- Signed-off-by: Matt Mastracci <matthew@mastracci.com>
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { op_hello } from "ext:core/ops";
|
|
function hello() {
|
|
op_hello("world");
|
|
}
|
|
|
|
globalThis.Extension = { hello };
|