Is it possible using awesome_print to print on the same line?
For example, consider the following loop:
(0..5).each do |i|
ap i
end
Each instance of i appears on a new line, but I would like to have the result as 012345, on the same line.
Failing this, what other ruby print methods could achieve this?