-
1
- #1
adekunleadekoya
Programmer
- May 19, 2008
- 30
i need a sample tcl code that prints hello world every 5 seconds
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 shout {} {
puts "hello"
after 60000 shout
}
shout