All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.tree.Instruction Maven / Gradle / Ivy

package org.snapscript.tree;

public class Instruction {

   public final String type;
   public final String name;
   
   public Instruction(String type, String name){
      this.type = type;
      this.name = name;
   }

   public String getName(){
      return name;
   }
   
   public String getType(){
      return type;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy