5 lines
77 B
Go
5 lines
77 B
Go
func Y(f FuncFunc) Func {
|
|
return func(x int) int {
|
|
return f(Y(f))(x)
|
|
}
|
|
}
|