Skip to content

Instantly share code, notes, and snippets.

@camateg
camateg / TANKS.bas
Last active September 7, 2022 18:48
Tanks artillery game for AppleSoft BASIC
10 HGR
15 HOME : VTAB 24
20 HCOLOR= 1
30 DIM TER(300)
40 TER(0) = 120
50 FOR X = 1 TO 279
60 TER(X) = TER(X -1) + RND(1) *4 -2
70 NEXT X
100 FOR X = 0 TO 279
110 HPLOT X,TER(X) TO X,191