miller/go/reg-test/input/fg.mlr

10 lines
89 B
Text

$fg = f(g($i));
$gf = g(f($i));
func f(x) {
return x**2
}
func g(x) {
return 3*x
}