summary refs log tree commit diff stats
path: root/tests/tcmdline.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcmdline.nim')
-rwxr-xr-xtests/tcmdline.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/tcmdline.nim b/tests/tcmdline.nim
deleted file mode 100755
index f43aecafa..000000000
--- a/tests/tcmdline.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-# Test the command line
-
-import
-  os, strutils
-
-var
-  i: int
-  params = paramCount()
-i = 0
-writeln(stdout, "This exe: " & getApplicationFilename())
-writeln(stdout, "Number of parameters: " & $params)
-while i <= params:
-  writeln(stdout, paramStr(i))
-  i = i + 1