Sometimes it's more convenient to print in <%%>. How to do it in Rails?
http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#method-i-concat
Should be what you are looking for.
E.g. the following statement using concat:
concat
<% concat "Output" %>
is equivalent to:
<%= "Output" %>
2.1m questions
2.1m answers
60 comments
57.0k users