diff --git a/HelloWorld/hello_world.tcl b/HelloWorld/hello_world.tcl new file mode 100755 index 00000000..b6f302ab --- /dev/null +++ b/HelloWorld/hello_world.tcl @@ -0,0 +1,9 @@ +#!/usr/bin/tclsh + +#By Marina Latini https://github.com/deneb-alpha + +puts -nonewline "Enter your name: " +flush stdout +set name [gets stdin] + +puts "Hello $name!"