RosettaCodeData/Task/Higher-order-functions/PowerShell/higher-order-functions-2.ps1
2026-04-30 12:34:36 -04:00

6 lines
75 B
PowerShell

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