What you posted looks fine. You did not post any of the output, nor did you post the code to run the interpreter. Here's my code (I'm omitting the code for Interpreter as it's the same as yours): package postfix; import postfix.parser.*; import postfix.lexer.*; import postfix.node.*; import java.io.*; public class...