# # Create many HTML strings with ERB. # prelude: | require 'erb' data = < <%= title %>

<%= title %>

<%= content %>

erb title = "hello world!" content = "hello world!\n" * 10 benchmark: app_erb: ERB.new(data).result(binding) loop_count: 15000