summary refs log tree commit diff stats
path: root/tests/compile/tcmdline.nim
blob: f4ee20d311497256da28b6db8045fb95554b70c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Test the command line

import
  os, strutils

var
  i: int
  params = paramCount()
i = 0
writeln(stdout, "This exe: " & getAppFilename())
writeln(stdout, "Number of parameters: " & $params)
while i <= params:
  writeln(stdout, paramStr(i))
  i = i + 1