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