This is very much like the standard template, except that it has some ActionView-specific stuff. It's only used for benchmarking.

<%= render :partial => 'erb/av_partial_1' %>
Yes, ladies and gentileman. He is just that egotistical. Fantastic! This should be multi-line output The question is if this would translate! Ahah! <%= 1 + 9 + 8 + 2 %> <%# numbers should work and this should be ignored %>
<% 120.times do |number| -%> <%= number %> <% end -%>
<%= " Quotes should be loved! Just like people!" %>
Wow.

<%= "Holy cow " + "multiline " + "tags! " + "A pipe (|) even!" %> <%= [1, 2, 3].collect { |n| "PipesIgnored|" } %> <%= [1, 2, 3].collect { |n| n.to_s }.join("|") %>

<% foo = String.new foo << "this" foo << " shouldn't" foo << " evaluate" %> <%= foo + "but now it should!" %> <%# Woah crap a comment! %>