Rails console (END) how to get past it?

rails-console, ruby-on-rails

Solution

stumbled over this problem, after some tries I found the solution :)

⇧ `shift` + Q

Edit: as mentioned by @Paul, only `Q` will suffice.

Problem

working in the Rails console, I pasted a very long hash into the console and when I scrolled ot the bottom of it it has the token (END) but the only way I've found to get past it is to exit the console with CTRL+Z. This defeats my purpose in using the console for testing some code out. Is there any other way to get past that (END) token?

Original source