summaryrefslogtreecommitdiff
path: root/tests/028_args.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-04-07 00:13:06 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-04-07 01:13:06 +0300
commit780e72ab6a092a6a7174c30bf4163857770d2ad0 (patch)
tree035bf5426c6c50f3cec4790700a29563c45db8b8 /tests/028_args.ts
parentcb11bbd8396fc3f6607481d50a4c82db0bfeffb7 (diff)
Refactor CLI flag parsing (#2025)
Diffstat (limited to 'tests/028_args.ts')
-rw-r--r--tests/028_args.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/028_args.ts b/tests/028_args.ts
new file mode 100644
index 000000000..15df61555
--- /dev/null
+++ b/tests/028_args.ts
@@ -0,0 +1,3 @@
+Deno.args.forEach(arg => {
+ console.log(arg);
+});