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

17 lines
352 B
Plaintext

$ erubis -XNU example11.rhtml
1: _buf = '';
7: if @list.nil? || @list.empty?
9: else
12: @list.each_with_index do |item, i|
13: _buf << ( i % 2 == 0 ? '#FCC' : '#CCF' ).to_s;
14: _buf << ( item ).to_s;
16: end
19: end
22: _buf.to_s