Determine the last line of the template's insertion
It's quite difficult to understand what you want. What is the output you expect from your code?
Determine the last line of the template's insertion
How to ascertain the last line of the template's inserted argument ? on foo( insert : untyped) = if i < 5: echo "hello" elif i < 7: echo "world" insert var i while i < 9 : inc(i) foo() : echo "foo" ech