instiki/vendor/plugins/erubis/test/data/users-guide/example1.result
2010-07-04 08:51:53 -05:00

17 lines
278 B
Plaintext

$ ruby example1.rb
---------- script source ---
_buf = ''; _buf << '<ul>
'; for item in list
_buf << ' <li>'; _buf << ( item ).to_s; _buf << '</li>
'; end
_buf << '</ul>
';
_buf.to_s
---------- result ----------
<ul>
<li>aaa</li>
<li>bbb</li>
<li>ccc</li>
</ul>