mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-26 01:04:00 +00:00
enable bsd for tsetutils; improve setutils API (#17098)
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
discard """
|
||||
targets: "c js"
|
||||
disabled: "bsd" # pending #17093
|
||||
"""
|
||||
|
||||
import std/setutils
|
||||
|
||||
type
|
||||
Colors = enum
|
||||
red, green = 5, blue = 10
|
||||
Bar = enum
|
||||
bar0 = -1, bar1, bar2
|
||||
|
||||
template main =
|
||||
block: # toSet
|
||||
doAssert "abcbb".toSet == {'a', 'b', 'c'}
|
||||
@@ -31,4 +33,4 @@ template main =
|
||||
doAssert {'0'..'9'}.complement == {0.char..255.char} - {'0'..'9'}
|
||||
|
||||
main()
|
||||
static: main()
|
||||
static: main()
|
||||
|
||||
Reference in New Issue
Block a user