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

7 lines
75 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
function g2($y) {
function f2($y) {
$y*$y
}
(f2 $y)
}