RosettaCodeData/Task/Higher-order-functions/PowerShell/higher-order-functions-2.psh
2015-11-18 06:14:39 +00:00

6 lines
75 B
Text

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