summaryrefslogtreecommitdiff
path: root/std/examples/flags.ts
blob: a452494c5341265fca234b3e35b85d0b10bbbf3a (plain)
1
2
3
4
5
6
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { parse } from "../flags/mod.ts";

if (import.meta.main) {
  console.dir(parse(Deno.args));
}