ts <decoux / moulon.inra.fr> writes: > n = 123 > 3.times {{ > puts n > 3.times {{ > puts n > n += 100 > }} > n += 2 > }} ... > I must say that I don't like the syntax D'accord. We could do it with another keyword: 3.times local { 3.times local do end } but I don't like the idea of adding another. I'm sure though that if we end up liking the concept, we can all jointly come up with a syntax. Dave