Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/Animation/BBC-BASIC/animation.basic
Normal file
15
Task/Animation/BBC-BASIC/animation.basic
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
VDU 23,22,212;40;16,32,16,128
|
||||
txt$ = "Hello World! "
|
||||
direction% = TRUE
|
||||
ON MOUSE direction% = NOT direction% : RETURN
|
||||
OFF
|
||||
REPEAT
|
||||
CLS
|
||||
PRINT txt$;
|
||||
IF direction% THEN
|
||||
txt$ = RIGHT$(txt$) + LEFT$(txt$)
|
||||
ELSE
|
||||
txt$ = MID$(txt$,2) + LEFT$(txt$,1)
|
||||
ENDIF
|
||||
WAIT 20
|
||||
UNTIL FALSE
|
||||
Loading…
Add table
Add a link
Reference in a new issue