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