http://qs321.pair.com?node_id=11124187


in reply to Re^8: What's the right way to write a method which returns one line at a time from a file?
in thread What's the right way to write a method which returns one line at a time from a file?

I see that construct as a perfectly legitimate way to handle returning different values in different cases.

It is legitimate but all those unnecessary elsifs and elses spread confusion. Why are they there if they serve no purpose? TIMTOWTDI but I prefer the clarity of

return A if FOO; return B if BAR; return C if BAZ; die "unmatched case";

🦛

  • Comment on Re^9: What's the right way to write a method which returns one line at a time from a file?
  • Select or Download Code