Why the code below (which is taken from http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html#ruby_blocks) renders to <p>See, I can count!</p> and doesn't output numbers from 42 to 47?
- (42...47).each do |i|
%p= i
%p See, I can count!
I used #haml.try page in order to test the haml snippet.