예제 #1
0
파일: Opcode.cs 프로젝트: CalebJ2/KOS
 public override void Execute(ICpu cpu)
 {
     object identifier = cpu.PopStack();
     if (identifier != null)
     {
         cpu.RemoveVariable(identifier.ToString());
     }
     else
     {
         throw new KOSDeprecationException("0.17","UNSET ALL", "<not supported anymore now that we have nested scoping>", "");
     }
 }