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

8 lines
73 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
function g ($x) {
$x + $x
}
function f ($x) {
$x*$x*$x
}
f (g 1)