DerricFunctions by Amd Silver17th Feb 2006 21:16
|
---|
Summary just a few functions i threw together. There probally not very good but it was spare time. Description If any one has ever used a ti 83+ the output function is the same syntax as that. Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com FUNCTION Output(row,colum,text$) TEXT colum,row,text$ ENDFUNCTION FUNCTION Password(Password$) INPUT "Password?",Answer$ IF Answer$ = Password$ then correct = 1 IF Answer$ <> Password$ then correct = 0 ENDFUNCTION correct |