Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
package entities;
public class Label extends Assembler {
private final String label;
public Label(String label) {
this.label = label;
}
@Override
public String toString() {
return label + ":";