Example #1
0
        public override void Execute(CPU cpu)
        {
            object value      = cpu.PopValue();
            string identifier = (string)cpu.PopStack();

            cpu.SetValue(identifier, value);
        }