summary refs log tree commit diff stats
path: root/tests/stdlib/tcmdline.nim
blob: bc78d605762ef483c2859cad4ef91a2c4cbfdbef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  targets: "c js"
  joinable: false
"""

import std/os

var params = paramCount()
doAssert params == 0
doAssert paramStr(0).len > 0
doAssert commandLineParams().len == 0