8 lines
73 B
PowerShell
8 lines
73 B
PowerShell
|
|
function g ($x) {
|
||
|
|
$x + $x
|
||
|
|
}
|
||
|
|
function f ($x) {
|
||
|
|
$x*$x*$x
|
||
|
|
}
|
||
|
|
f (g 1)
|