HateLace/app/src/main/java/hatelace/Program.java

18 lines
340 B
Java
Raw Normal View History

2024-04-16 07:19:34 +02:00
package hatelace;
public class Program {
2024-04-16 07:58:37 +02:00
private Instruction[] instructions;
2024-04-16 07:19:34 +02:00
2024-04-16 07:58:37 +02:00
public Program(Instruction[] instructions) {
2024-04-16 07:19:34 +02:00
this.instructions = instructions;
}
2024-04-16 07:58:37 +02:00
public Instruction[] getInstructions() {
2024-04-16 07:19:34 +02:00
return this.instructions;
}
2024-04-16 07:58:37 +02:00
public int size() {
return this.instructions.length;
}
2024-04-16 07:19:34 +02:00
}