Ejemplo n.º 1
0
Archivo: Opcode.cs Proyecto: WazWaz/KOS
 public override void Execute(CPU cpu)
 {
     object identifier = cpu.PopStack();
     if (identifier != null)
     {
         cpu.RemoveVariable(identifier.ToString());
     }
     else
     {
         cpu.RemoveAllVariables();
     }
 }