RosettaCodeData/Task/Function-composition/PowerShell/function-composition-2.psh

5 lines
73 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
function fg (${function:f}, ${function:g}, $x) {
f (g $x)
}
fg f g 1