6 lines
91 B
Nim
6 lines
91 B
Nim
import future
|
|
|
|
proc addM[T](n: T): auto = (x: T) => x + n
|
|
|
|
let add3 = addM(3)
|
|
echo add3(7)
|