6 lines
77 B
PowerShell
6 lines
77 B
PowerShell
function f ($y) {
|
|
$y*$y
|
|
}
|
|
function g (${function:f}, $y) {
|
|
(f $y)
|
|
}
|