2008/3/12, Stefan Lang <perfectly.normal.hacker / gmail.com>:

> elsunless is not a keyword in Ruby. Let's reformat your
>  code a little bit:
>
>
>     unless true
>       puts "wrong wrong"
>       elsunless false
>       puts 'weird, but logical'
>       elsunless true
>       puts 'truly strange'
>       else
>       puts 'weirder yet'  # This is what pops out!
>     end

Damn, the "else" should not be indented.

Stefan