in reply to Re: breaking long lines in my code
in thread breaking long lines in my code
print nop("this is line 1, " . "this is line 2, " . "this is line 3");
In this case, nop() is as simple as it looks:
sub nop { return join("", @_) }
If anyone has a better way of handling the auto-indenting problem, I'm open to it.
- Richie
|
|---|