mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
12 lines
147 B
Nim
12 lines
147 B
Nim
discard """
|
|
output: 42
|
|
"""
|
|
|
|
import asyncdispatch
|
|
|
|
proc foo(): Future[int] {.async.} =
|
|
template ret() = return 42
|
|
ret()
|
|
|
|
echo (waitFor foo())
|