mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
162 B
Nim
15 lines
162 B
Nim
discard """
|
|
output: '''
|
|
testCallback()
|
|
'''
|
|
"""
|
|
|
|
import asyncdispatch
|
|
|
|
proc testCallback() =
|
|
echo "testCallback()"
|
|
|
|
when true:
|
|
callSoon(testCallback)
|
|
poll()
|