mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
7 lines
172 B
Nim
7 lines
172 B
Nim
proc doSomething(v: int, x: proc(v:int):int): int = return x(v)
|
|
proc doSomething(v: int, x: proc(v:int)) = x(v)
|
|
|
|
|
|
echo doSomething(10, proc(v: int): int = return v div 2)
|
|
|