Ti BASIC User defined fucntion use in a program

  • Context: Calculators 
  • Thread starter Thread starter Saladsamurai
  • Start date Start date
  • Tags Tags
    Program
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 4K views
Saladsamurai
Messages
3,009
Reaction score
7
I am trying to figure out why Ti BASIC is the worst language ever. Every other language, if you want to use a user defined function within a user defined program, you simply write the function above (or below) the sub routine and then you can call it to your hearts delight...why is Ti BASIC failing me here? (I am using Ti89 Titanium.)


All I want to do is a simple test here. Here is a user defined function that simply take an argument and then returns that argument (and this works if I type it directly into my calculator)

Code:
Func
newdisp(stuff)
Return Stuff
EndFunc

Now I want to do a simple test program that calls newdisp and uses it

Code:
()
Prgm
newdisp(100)
EndPrgm

So it should just display '100' on the home screen. I would think that the structure of the program would be something like


Code:
Func
newdisp(stuff)
Return Stuff
EndFunc

()
Prgm
newdisp(100)
EndPrgm


or maybe

Code:
()
Prgm
newdisp(100)
EndPrgm

Func
newdisp(stuff)
Return Stuff
EndFunc

But if this worked I would not be here...the above to codes I am writing in Ti GraphLink and then sending to my calculator.

Any thoughts?
 
Physics news on Phys.org
Any ideas on this one?