prelude: | require 'erb' title = "hello world!" content = "hello world!\n" * 10 data = < <%= title %>

<%= title %>

<%= content %>

EOS benchmark: | ERB.new(data).result(binding)