The following code can be entered in a Tcl shell (tclsh),
or into a script file and run through a Tcl shell:
puts "Hello, world!"
It gives the string argument Hello, world! to the command puts. The puts command writes its argument to standard out (your terminal in interactive mode) an...