Hallo.
Hab schnell ein kleines Listing im GFA-Basic 2.0 geschrieben, in dem du einen Ball zwischen 2 Wänden hin und her "springen" siehst.
x=10
y=200
begin:
line 7,1,7,400
line 633,1,633,400
pcircle x,y,6
x=x+10
if x=630 then
goto back
endif
cls
goto begin
back:
line 7,1,7,400
line 633,1,633,400
pcircle x,y,6
x=x-10
if x=10 then
goto begin
endif
cls
goto back