William Djaja Tjokroaminata wrote:
> This discussion made me realize that in Ruby, the keywords are not very
> very special.  It seems that they are special mostly (or only?) in
> /^\s*keyword\s+/.

Not even there:

x = "foo"
def x.while
   self + " while"
end

p x.
   while