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

8 lines
73 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function g ($x) {
$x + $x
}
function f ($x) {
$x*$x*$x
}
f (g 1)