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
i=0
while read line
do
((i+=line))
done < x
print $i
#!/usr/dt/bin/dtksh
float i=0
while read line
do
float a=$line
((i+=a))
done < x
print $i