program lines7 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(6.0) call linecap(0) call newpath call plot(0.1,0.1,3) call plot(0.9,0.1,2) call stroke call linecap(1) call newpath call plot(0.1,0.3,3) call plot(0.9,0.3,2) call stroke call linecap(2) call newpath call plot(0.1,0.5,3) call plot(0.9,0.5,2) call stroke call fin stop end