I know that I can do this in Rails:
<%="hello" %>
but is there any way to do this
<%
echo "hello"
%>
and get it to show up in the response?
Have you tried concat
.
I have seen this when wandering in Rails documentation. Not sure at all since I am very new to Rails.