RosettaCodeData/Task/Higher-order-functions/PowerShell/higher-order-functions-2.psh
2023-07-01 13:44:08 -04:00

6 lines
75 B
Text

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