tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 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