6 lines
69 B
Text
6 lines
69 B
Text
Eval := function(f, x)
|
|
return f(x);
|
|
end;
|
|
|
|
Eval(x -> x^3, 7);
|
|
# 343
|