0 Members and 1 Guest are viewing this topic.
sub(APV,"appvONE")//more codesub(APV,"appvTWO") Return //end the programLbl APV //this is the subroutineGetCalc(r1) // r1 is the graphing variable.Return //return from the subroutine
So...I still don't get the difference between using subroutines and labels, and just labels and gotos. Are subroutines carried out simultaneously?
Sub(LBL)Disp "This is printed"Goto LBLDisp "this will not be printed"Lbl LBLDisp "printed twice"Return
Oh, okay. So if you wanted to code bullets being shot from a sprite, and there were multiple bullets, how would you keep track of them?