EOS 2  1.1.0
Einfache Objektbasierte Sprache
NOP.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.vm.commands;
2 
3 import de.lathanda.eos.vm.Command;
4 import de.lathanda.eos.vm.Machine;
5 
14 public class NOP extends Command {
15 
16  @Override
17  public boolean execute(Machine m) throws Exception {
18  return true;
19  }
20 
21  @Override
22  public String toString() {
23  return "NOP{" + '}';
24  }
25 
26 }
boolean execute(Machine m)
Definition: NOP.java:17
Impressum