8 lines
106 B
Nim
8 lines
106 B
Nim
|
|
proc first(fn: proc): auto =
|
||
|
|
return fn()
|
||
|
|
|
||
|
|
proc second(): string =
|
||
|
|
return "second"
|
||
|
|
|
||
|
|
echo first(second)
|