summaryrefslogtreecommitdiff
path: root/cli/tests/028_args.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/028_args.ts')
-rw-r--r--cli/tests/028_args.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/028_args.ts b/cli/tests/028_args.ts
new file mode 100644
index 000000000..51c5cb14b
--- /dev/null
+++ b/cli/tests/028_args.ts
@@ -0,0 +1,5 @@
+Deno.args.forEach(
+ (arg): void => {
+ console.log(arg);
+ }
+);