Example #1
0
        // (n -- n n) or ( -- )
        private int QuestionDupeAction()
        {
            _interpreter.StackExpect(1);

            if (_interpreter.Peek() != 0)
            {
                _interpreter.StackFree(1);

                _interpreter.Dup();
            }

            return(1);
        }