1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 02:27:46 -05:00
denoland-deno/tests/registry/npm/@denotest/say-hello/1.0.0/say-hello.js

6 lines
221 B
JavaScript
Raw Normal View History

import { sayHello } from "./index.js";
console.log(sayHello());
import path from "node:path";
import fs from "node:fs";
fs.writeSync(fs.openSync(path.join(process.env.INIT_CWD, "say-hello-output.txt"), "w"), sayHello());