diff --git a/examples/output-function.ejs b/examples/output-function.ejs
index 4eaff82a..80393609 100644
--- a/examples/output-function.ejs
+++ b/examples/output-function.ejs
@@ -8,3 +8,11 @@
});
-%>
+
+
+<%
+ users.forEach(function (user) {
+ echo(include('./partial.ejs', {user: user}));
+ });
+%>
+
diff --git a/examples/partial.ejs b/examples/partial.ejs
new file mode 100644
index 00000000..f77e83d3
--- /dev/null
+++ b/examples/partial.ejs
@@ -0,0 +1,4 @@
+
+ <%= user.name %>
+ is a <%= user.age %> year old <%= user.species %>
+
\ No newline at end of file