mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
7 lines
101 B
Nim
7 lines
101 B
Nim
discard """
|
|
output: "yes"
|
|
"""
|
|
case 1.0
|
|
of 1.0..2.0, 4.0: echo "yes"
|
|
of 3.0: discard
|
|
else: echo "no" |