RosettaCodeData/Task/Function-composition/PowerShell/function-composition-1.psh
2015-11-18 06:14:39 +00:00

7 lines
73 B
Text

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