Assigning a name to a Variable or Function is done when it is constructed. Function exposes a SetName method, but it seems to cause problems when the function is saved and re-opened. This introduces complications; for instance, expressing something like
let f = bias + weight * input
... becomes difficult, because there is no obvious way to give the function f a name.
Assigning a name to a
VariableorFunctionis done when it is constructed.Functionexposes aSetNamemethod, but it seems to cause problems when the function is saved and re-opened. This introduces complications; for instance, expressing something likelet f = bias + weight * input... becomes difficult, because there is no obvious way to give the function
fa name.