From: Mystifier Date: 2005-01-12T03:39:34+09:00 Subject: Re: Variable Arguments I am asking VM level. I am currently writing a stack based VM for Ruby from scratch. It is going to run ruby after compiling it to byte codes. In the process, I have to think about the bytecodes, the calling convention etc. A very basic toy could be ready early. I am also looking out for better performance and am willing to drop / alter ruby specifications, though my approach is to find a way without opting for the change. Currently, I am writing an Interpreter while the specifications are fluid. Once it is stabilized, I shall move over to jit compiler. Arity did give me a possible way to resolve my issue. Thanks. Regards, Mystifier