Пример #1
0
        // (F: f1 f2 f3 -- f2 f3 f1)
        private int FRoteAction()
        {
            _interpreter.StackExpect(3);

            _interpreter.FRot();

            return(1);
        }