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.
set file [open $path r]
foreach line [split [read $file] \n] {
set index [lindex $line 0]
set freq1 [lindex $line 1]
set time1 [lindex $line 2]
}
close $file
package require textutil
set file [open $path r]
foreach line [split [read $file] \n] {
set line [textutil::splitx $line]
set index [lindex $line 0]
set freq1 [lindex $line 1]
set time1 [lindex $line 2]
}
close $file
package require textutil
set file [open $path r]
foreach line [split [read $file] \n] {
foreach {index freq1 time1} [textutil::splitx $line] {
break
}
}
close $file