Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
GOTO 50: REM THIS WILL WORK IMMEDIATELY
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
10 DEF FN S(A)=A*A
|
||||
20 PRINT FN S(2): REM THIS WILL WORK
|
||||
30 PRINT FN C(2): REM CALLING A FUNCTION PRIOR TO DEFINITION MAY NOT WORK
|
||||
40 GOSUB 9000
|
||||
50 PRINT FN C(2): REM THIS WILL WORK
|
||||
60 END
|
||||
9000 DEF FN C(A)=A*A*A
|
||||
9999 RETURN
|
||||
Loading…
Add table
Add a link
Reference in a new issue