> is it possible the ops to handle variable number of arguments, what I have
> in mind :
> 
> print I1,",",N2,"\n"

This should be done by create array opcode plus print array opcode.

[1, 2, 3, 4, 5]

The create array opcode takes "n" top of stack (or "n" of registers)
and create an array out of it. Both opcodes are very popular and worth
of their existence. I don't see further benefit of a single vararg
print opcode. The print is an expensive opcode anyway.

Hong

Reply via email to