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