mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
279 B
Nim
17 lines
279 B
Nim
# Test if the new table constructor syntax works:
|
|
|
|
template ignoreExpr(e) =
|
|
discard
|
|
|
|
# test first class '..' syntactical citizen:
|
|
ignoreExpr x <> 2..4
|
|
# test table constructor:
|
|
ignoreExpr({:})
|
|
ignoreExpr({2: 3, "key": "value"})
|
|
|
|
# NEW:
|
|
assert 56 in 50..100
|
|
|
|
assert 56 in ..60
|
|
|