blob: 04f635ceae2caa577d998af43d4913f24987d8a3 (
plain)
1
2
3
4
5
6
7
8
|
await new Deno.Command(Deno.execPath(), {
args: ["eval", "--quiet", "console.log('Hello, world! 1')"],
stdout: "inherit",
}).output();
new Deno.Command(Deno.execPath(), {
args: ["eval", "--quiet", "console.log('Hello, world! 2')"],
stdout: "inherit",
}).outputSync();
|