RosettaCodeData/Task/Function-composition/PowerShell/function-composition-1.psh
2023-07-01 13:44:08 -04:00

7 lines
73 B
Text

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