mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
239 B
Nim
15 lines
239 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()
|