public override void Execute(CPU cpu) { object identifier = cpu.PopStack(); if (identifier != null) { cpu.RemoveVariable(identifier.ToString()); } else { cpu.RemoveAllVariables(); } }