RosettaCodeData/Task/Higher-order-functions/PowerShell/higher-order-functions-2.psh

7 lines
75 B
Plaintext

function g2($y) {
function f2($y) {
$y*$y
}
(f2 $y)
}