Skip to content

Instantly share code, notes, and snippets.

@def-
Forked from Varriount/at.nim
Last active June 19, 2016 18:02
Show Gist options
  • Save def-/59dee63d884775ff3e032674c226f310 to your computer and use it in GitHub Desktop.
Save def-/59dee63d884775ff3e032674c226f310 to your computer and use it in GitHub Desktop.
import asyncdispatch
template doAsync(name: expr; body: untyped): untyped {.immediate.} =
proc name() {.async.} =
body
asyncCheck(name())
doAsync(namething):
echo "hello"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment