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' %>
<% 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! %>