From: Hal Fulton Date: 2005-10-03T11:47:51+09:00 Subject: Re: (4+3).reverse # => 1? x1 wrote: > Does anything like this exist? > > a method of inversing the given operation.. > > (4�).revese # yields 2, the square of 4 > (8/4).reverse # yields 32, the product of 8*4 No... and what you're asking for doesn't really make sense, as expressions are evaluated from the inside out: (8/4).methcall would be the same as 2.methcall Make sense? Hal