summaryrefslogtreecommitdiff
path: root/examples/basic
diff options
context:
space:
mode:
authormakoto kuwata <kwa@kuwata-lab.com>2006-09-19 11:56:44 +0000
committermakoto kuwata <kwa@kuwata-lab.com>2006-09-19 11:56:44 +0000
commitb8f6776aa5074f2f191e25e2460cd7b8be7bf320 (patch)
tree6bce3bbd1c0fd33e5d959af885db2e6cd6a11572 /examples/basic
parent90482329dc45b6b93c0f4052cf44ab4612942fef (diff)
downloaderubis-b8f6776aa5074f2f191e25e2460cd7b8be7bf320.tar.gz
- [update] ReleaseNote.txt, README.txt, doc/users-guide.txt
- [change] 'examples/pi' is renamed to 'examples/pi-xhtml'
Diffstat (limited to 'examples/basic')
-rw-r--r--examples/basic/example.ec2
-rw-r--r--examples/basic/example.eperl2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/basic/example.ec b/examples/basic/example.ec
index 1a1787f..952e254 100644
--- a/examples/basic/example.ec
+++ b/examples/basic/example.ec
@@ -14,7 +14,7 @@ int main(int argc, char *argv[])
<% for (i = 1; i < argc; i++) { %>
<tr bgcolor="<%= i % 2 == 0 ? "#FFCCCC" : "#CCCCFF" %>">
<td><%= "%d", i %></td>
- <td><%= "%s", argv[i] %></td>
+ <td><%== "%s", argv[i] %></td>
</tr>
<% } %>
</tbody>
diff --git a/examples/basic/example.eperl b/examples/basic/example.eperl
index 678aa21..62514b4 100644
--- a/examples/basic/example.eperl
+++ b/examples/basic/example.eperl
@@ -9,7 +9,7 @@
<% for $item (@list) { %>
<tr bgcolor=<%= ++$i % 2 == 0 ? '#FFCCCC' : '#CCCCFF' %>">
<td><%= $i %></td>
- <td><%= $item %></td>
+ <td><%== $item %></td>
</tr>
<% } %>
</tbody>