import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { execPath } = Deno;
Returns the path to the current deno executable.
console.log(Deno.execPath()); // e.g. "/home/alice/.local/bin/deno"
Requires allow-read
permission.