mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-04 18:51:20 +01:00
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
const { args } = Deno;
|
|
import { parse } from "./mod.ts";
|
|
|
|
console.dir(parse(args));
|