RosettaCodeData/Task/First-class-functions/Dyalect/first-class-functions-4.dyalect
2023-07-01 13:44:08 -04:00

3 lines
49 B
Text

func flip(fun, x, y) {
(y, x) => fun(x, y)
}