To be able to port many programs that I wrote in the ti-CAS only one toolbar is missing.
Please, Mr. Bernard may in the future incorporate a function that performs this function.
Thank you very much
TI68k toolbar

Modérateur : xcasadmin
What are these inputforms? I did not see in the catalog.parisse a écrit :There is some support for TI-like inputforms inside Xcas
Code : Tout sélectionner
reqdem0a()
Prgm
Local r,k
Request "Radious",r
expr(r)→r
Disp r
r→k
Disp π*k^2
EndPrgm
in the compilation output, the assignment ( =>r ) or ( =>r ) is lost.:reqdem0a()
:Func
: Local r, k
: Request "Radious",r
: expr(r)=>r
: Disp r
: r=>k
: Disp pi*k^2
:EndFunc
:dbox0()
:Func
:Local x,y
: Dialog
: Title "Title: INPUT"
: Request "x:",x
: Request "y:",y
: EndDlog
: Disp x,y
: Disp x
:EndFunc:;