Files
Nim/tests/async/t7192.nim
2018-12-11 21:23:22 +01:00

15 lines
162 B
Nim

discard """
output: '''
testCallback()
'''
"""
import asyncdispatch
proc testCallback() =
echo "testCallback()"
when true:
callSoon(testCallback)
poll()