t7192.nim 162 B

123456789101112131415
  1. discard """
  2. output: '''
  3. testCallback()
  4. '''
  5. """
  6. import asyncdispatch
  7. proc testCallback() =
  8. echo "testCallback()"
  9. when true:
  10. callSoon(testCallback)
  11. poll()