I have code here
proc checkPrime {no} {
set i 1
set count 0
while {$i < $no} {
if {{$no%$i} eq 0} {
incr count
}
if {$count eq 2} {
puts "the number is prime number"
return
}
incr i
}
}
i want put the whole procedure into a single comment, i don't want put each line with #, is there any possibility like in java /* .. */ with all code commented, like that in tcl. and i also want some of the text will be put single comment