Initial commit

This commit is contained in:
2024-09-06 18:00:26 +02:00
parent 235bb8e37d
commit 09f5d17a59
9 changed files with 53 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
public class Stackitem<T> {
public String type;
public T value;
public Stackitem(String itemType, T val){
type = itemType;
value = val;
}
}