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

11 lines
191 B
Plaintext

$ erubis -x example2.eruby
_buf = ''; _buf << '<ul>
'; for item in list
_buf << ' <li>
'; _buf << ( item ).to_s; _buf << '
'; _buf << ' </li>
'; end
_buf << '</ul>
';
_buf.to_s