0 Members and 1 Guest are viewing this topic.
Can i use any function which i have created with the program editor?
thank you... Is the call and the structure in LUA for NSpire the same?
Do you have a short example?
local status, err = pcall(function () a = 'a'+1 end)print(err) --> stdin:1: attempt to perform arithmetic on a string valuelocal status, err = pcall(function () error("my error") end)print(err) --> stdin:1: my error