http://qs1969.pair.com?node_id=104111


in reply to Re: Re: Fibonacci Generator
in thread Fibonacci Generator

if ($opt_c) { $\ = "\n"; } else { $\ = " "; }
You can avoid that ugly if/else and excess braces by writing:
$/= $opt_c ? "\n" : " ";