5 lines
73 B
PowerShell
5 lines
73 B
PowerShell
|
|
function fg (${function:f}, ${function:g}, $x) {
|
||
|
|
f (g $x)
|
||
|
|
}
|
||
|
|
fg f g 1
|