> 9. Ruby has no pre/post increment/decrement operator. For instance, x++ > or x-- will fail to parse. Why is that? x++ and x-- are very convenient. I sort of understand why ++x and --x don't exist. But why can't numbers have a "++" and "--" method? Daniel.