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.
#!/bin/ksh
CTR=21 # Needs to be one more than the number of times you want
while (( CTR -= 1 ))
do
print "Counter CTR is ${CTR}"
done