Well, I am trying to do a small program [sorry guys, but isn't a game] it is for testing the convergence of series..
And I was wondering if I could do this in a colorful, and beautiful way with lua, but, is possible to call a TI-Basic program within lua code:
I mean like:
function convergence.power()
callmyBasicPrgm()
end
or if possible:
function convergence.power()
Local rterm,aterm,sumv
:clrio
:Try
:lim((equ(x))^(((1)/(x))),x,∞,1)→rterm
:Else
:If errornum=800 Then:
:(...)
:Return 0
end