mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
17 lines
220 B
Nim
17 lines
220 B
Nim
discard """
|
|
targets: "c cpp js"
|
|
"""
|
|
|
|
import std/[json, isolation]
|
|
|
|
|
|
proc main() =
|
|
var x: seq[Isolated[JsonNode]]
|
|
x.add isolate(newJString("1234"))
|
|
|
|
doAssert $x == """@[(value: "1234")]"""
|
|
|
|
|
|
static: main()
|
|
main()
|