You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Okay, sure. So the whole poem's been turned backwards, letter-by-letter. I really want to just reverse the lines, though. Move the last line up to first and the first line down to last. Backwards, but not that backwards.
Here's how: poem.lines.to_a.reverse
poem.lines gives me an error. This is odd, because the rdoc for 1.9.3 shows linesas a valid method.
This seems very odd.
The text was updated successfully, but these errors were encountered:
The problem seems to be that .lines returns an Enumerator, and tryruby doesn't want to print the string version of (any) enumerators. (maybe they are getting detected as errors). If you do poem.lines.to_a, as suggested, you get the lines. You can do poem.lines.to_s to see what it should be printing.
So I think the fix is to print enumerators normally, instead of giving:
=> Something's gone wrong- that might not have been valid ruby
In section two, I see:
poem.lines
gives me an error. This is odd, because the rdoc for 1.9.3 showslines
as a valid method.This seems very odd.
The text was updated successfully, but these errors were encountered: