header relay위한 Concat user function추가

This commit is contained in:
jaewohong
2026-01-02 09:29:46 +09:00
parent 19d89a1623
commit c3234b6234
4 changed files with 74 additions and 3 deletions
@@ -9,7 +9,7 @@ public class ConcatFunction extends PostfixMathCommand {
public ConcatFunction() {
numberOfParameters = 2;
}
}
public void run(Stack inStack) throws ParseException {
checkStack(inStack);
@@ -20,5 +20,6 @@ public class ConcatFunction extends PostfixMathCommand {
String value = param1 + param2;
inStack.push(value);
}
}
}