dcf4cee37 ^
b122836ac ^
c50b5b62e ^
e80465dac ^
1
2
3 4 5 6 7 8 9
10
11 12 13 14
15
discard """ targets: "cpp" cmd: "nim cpp --hints:on --threads:on $options $file" """ proc threadMain(a: int) {.thread.} = discard proc main() = var thread: Thread[int] thread.createThread(threadMain, 0) thread.joinThreads() main()