mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 04:02:41 +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)
|
|
|