On Tue, Feb 26, 2002 at 08:53:51PM +0100, Jonas Liljegren wrote: > > Is there a directive for concatenating in TT that overrides what Perl > > provides? > > Concatenated: [% var1; var2; var3; %]
And if you want to assign that to some other value, there are a number of ways: [% x = BLOCK; a; b; c; END %] [% y = "$a$b$c" %] [% z = a _ b _ c %] A
