In flex / lex / bison / yacc (all that I just started to read about) you can set "$$" to some value ($ 1, $ 2, $ 3) and the return value. At least I think it works.
ParseKit provides you with a stack, so I assume that ($ 1, $ 2, $ 3) will be the first three values ββon the stack, for example. But then I think what you want to do is pull these values ββfrom the stack and put the return value on the stack. I see that the stack comes with a push method. Do you need to put the input values ββfirst before clicking anything?
thanks
source share