I am starting TCL tutorials and will be posting it on a daily basis
comment_example.tcl
#this is a comment
set real_years 4
set dog_name "spot"; #another comment
set dog_years [expr (7*$real_years)]
puts "my dog $dog_name is $real_years"
puts "he acts $dog_years old"
comment_example.tcl
#this is a comment
set real_years 4
set dog_name "spot"; #another comment
set dog_years [expr (7*$real_years)]
puts "my dog $dog_name is $real_years"
puts "he acts $dog_years old"
No comments:
Post a Comment