Ruby vs. Python は Lisp vs. Scheme に似ている

Python の好きなとこ・嫌いなとこを書いていて、よくわかった。
Ruby vs. PythonLisp vs. Scheme に似ていると思うんだ。

Scheme 好きな人は Python を、Lisp 好きな人は Ruby をやればいいと思うよ。

HAML

Mini reviews of 19 Ruby template engines をみると、HAMLをやけに推すやつがいたので、チュートリアルを見てみた。

### eRuby
    <small class="code" id="message">Hello, World!</small>

### HAML
    %small{:class => "code", :id => "message"} Hello, World!


### eRuby
<div id='content'>
    <div class='left column'>
      <h2>Welcome to our site!</h2>
      <p>
        <%= print_information %>
      </p>
    </div>
    <div class="right column">
      <%= render :partial => "sidebar" %>
    </div>
  </div>

### HAML
#content
    .left.column
      %h2 Welcome to our site!
      %p= print_information
    .right.column= render :partial => "sidebar" 

・・・これはないわ。CSS を知っていれば記法は連想できるかもしれんが、わかりやすいとはとても思えない。