program stars1 implicit none call init call viewport(0.2,0.2,0.8,0.8) call xyworld(0.0,0.0,1.0,1.0) call linety(1) call linewidth(2.0) call newpath call star(0.25,0.25,0.2,0.0,3) call stroke call newpath call star(0.75,0.25,0.2,0.0,4) call stroke call newpath call star(0.25,0.75,0.2,0.0,5) call stroke call newpath call star(0.75,0.75,0.2,0.0,6) call stroke call fin stop end