Gossamer Forum
Home : General : Perl Programming :

Re: [delicia] wrapping long lines?

Quote Reply
Re: [delicia] wrapping long lines? In reply to
Hi,

I'm not sure what you mean? You could do it it multiple ways:

Code:
my @dirty_words = qw/aaa bbb ccc/;
my @dirty_words2 = ('aaa','bbb','ccc');
my @dirty_words3 = (
'aaa',
'bbb',
'ccc'
);

All are perfectly valid :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread wrapping long lines? delicia 3780 Dec 22, 2017, 1:08 PM
Thread Re: [delicia] wrapping long lines?
Andy 3732 Dec 22, 2017, 10:52 PM
Thread Re: [Andy] wrapping long lines?
delicia 3723 Dec 23, 2017, 9:53 AM
Post Re: [delicia] wrapping long lines?
Andy 3724 Dec 23, 2017, 10:07 AM