mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
13 lines
178 B
Nim
13 lines
178 B
Nim
discard """
|
|
output: "11"
|
|
"""
|
|
|
|
proc p(x, y: int): int =
|
|
result = x + y
|
|
|
|
echo p((proc (): int =
|
|
var x = 7
|
|
return x)(),
|
|
(proc (): int = return 4)())
|
|
|