mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-10 15:04:59 +00:00
9 lines
103 B
Nim
9 lines
103 B
Nim
discard """
|
|
output: "{a, b, c}"
|
|
"""
|
|
|
|
# bug #2395
|
|
|
|
let alphaSet: set[char] = {'a'..'c'}
|
|
echo alphaSet
|