Error message - which line?
JMP helps the user to find errors in the code. If an unresolved name is used in the code, JMP stops the evaluation and shows an error message - pointing to the erronous line of code
print(1);
result = x + zzz_missing;
Let's make a slight change to the code. When JMP runs this code
myFunc = Function( {x},
{},
result = x + zzz_missing;
Return( result );
);
myFunc( 3 );
it returns again an ...
v_r
jay_holavarri