mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
8 lines
246 B
TypeScript
8 lines
246 B
TypeScript
await Deno.spawn(Deno.execPath(), {
|
|
args: ["eval", "--quiet", "console.log('Hello, world! 1')"],
|
|
stdout: "inherit",
|
|
});
|
|
Deno.spawnSync(Deno.execPath(), {
|
|
args: ["eval", "--quiet", "console.log('Hello, world! 2')"],
|
|
stdout: "inherit",
|
|
});
|