Files
Nim/tests/cpp/tthread_createthread.nim
2015-03-15 17:54:57 -04:00

14 lines
238 B
Nim

discard """
cmd: "nim cpp --hints:on --threads:on $options $file"
"""
proc threadMain(a: int) {.thread.} =
discard
proc main() =
var thread: TThread[int]
thread.createThread(threadMain, 0)
thread.joinThreads()
main()