Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
do i=1,10
x(i) = y(i)
enddo
runs slower than
do i = 1, 10, 2
x(i) = y(i)
x(i+1) = y(i+1)
enddo