Determine the last line of the template's insertion

2022-03-14 Thread shirleyquirk
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

2022-03-14 Thread mardiyah
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