Hello World Tcl
1 2 #!/bin/sh 3 4 # Next line restarts using tclsh \ 5 exec tclsh "$0" "$@" 6 7 puts "Hello World." 8 exit
DZone Snippets > danostuporstar > hello
12729 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 #!/bin/sh 3 4 # Next line restarts using tclsh \ 5 exec tclsh "$0" "$@" 6 7 puts "Hello World." 8 exit