Subject: Re: Things That Newcomers to Ruby Should Know
From: Peter Hickman <peter semantico.com>
Date: Fri, 11 Oct 2002 01:03:09 +0900
References: 52669
Ruby has no pre/post increment operator!
x++ or x-- will fail to parse.
++x and --x will do nothing, infact they behave as multiple unary prefix
operators.
-x is the same as ---x is the same as -----x and so on.
Ruby is not C, C++ or Java