diff options
Diffstat (limited to 'flags/example.ts')
-rw-r--r-- | flags/example.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flags/example.ts b/flags/example.ts index 54d64b681..04ace4673 100644 --- a/flags/example.ts +++ b/flags/example.ts @@ -1,5 +1,5 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { args } from "deno"; +const { args } = Deno; import { parse } from "./mod.ts"; console.dir(parse(args)); |