RosettaCodeData/Task/Function-composition/PowerShell/function-composition-1.ps1
2026-04-30 12:34:36 -04:00

7 lines
73 B
PowerShell

function g ($x) {
$x + $x
}
function f ($x) {
$x*$x*$x
}
f (g 1)