in reply to I can't make a new line =(
gives you:my @lines = qw (foo bar qux); my $final_line = ""; foreach $line(@lines) { $final_line .= $line." "; } print "$final_line\n"; #include linebreak (\n) here
or is there any particular thing other than that?foo bar qux #newline here
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: I can't make a new line =(
by frederick213 (Initiate) on Jun 13, 2006 at 06:37 UTC | |
by graff (Chancellor) on Jun 13, 2006 at 06:44 UTC | |
by monkfan (Curate) on Jun 13, 2006 at 06:47 UTC | |
by davorg (Chancellor) on Jun 13, 2006 at 08:57 UTC | |
by frederick213 (Initiate) on Jun 13, 2006 at 06:47 UTC |