RosettaCodeData/Task/Function-composition/PowerShell/function-composition-1.psh

8 lines
73 B
Plaintext

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