6 lines
75 B
PowerShell
6 lines
75 B
PowerShell
function g2($y) {
|
|
function f2($y) {
|
|
$y*$y
|
|
}
|
|
(f2 $y)
|
|
}
|