Problems with global definition
Hi ptc community, I would like to make the following arrangement:
c="aply"
a:5
b:3
c≡if(a>b,"aply","does not aply")
Is there any way to place a result of verification of several variables before said verification?
I know that the global definition makes two passes: in the first pass, it evaluates only the global definitions and dismisses all the regular definitions but it would not be great if in the first pass it evaluates the global definitions taking into account the regular definitions that are before this global definition so that in the second pass not have this problem?

