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.
proc startfoo {foo } {
if {[set id [fork]] == 0} {
if {![catch {set fooid [exec $foo]} err]} {puts "Child at $fooid"}
wait $fooid
return 1;
}
puts "ERROR: $err"
return -1
}