Runtime evaluation: Difference between revisions

Content deleted Content added
→‎{{header|Tcl}}: Show off much of the advanced goodness we've got in this area
m →‎{{header|Tcl}}: indicate why a limit is a good idea
Line 122: Line 122:
interp eval $i {
interp eval $i {
set x 0
set x 0
while {1} {
while {1} { # Infinite loop! Bwahahahaha!
puts "Counting up... [incr x]"
puts "Counting up... [incr x]"
}
}