Hello there !
I'd like for <<case>> to not go to the line whenever I use it.
For instance, if I do
<<for _i to 0; i_ lt $seen.length ; _i++>>
<<switch $seen[_i]>>
<<case "There's that in seen">> Oh there's that in seen ! <<case "There's also that">> Damn, there's also that !
<</switch>>
<</for>>
It will print ou something like :
Oh there's that in seen!
Damn, there's also that!
Whereas I'd like it to be like : "Oh there's that in seen! Damn, there's also that!"
What could I do ? Thanks a lot !