Closed mattbierner closed 10 years ago
package (a b) { a = b \> (+, 1); b = (*, 2) }
Will not work since b is defined after a uses it an expression. The work around is to manually specify a temp b that forwards to the real b once it is defined.
a
b
Will not work since b is defined after
a
uses it an expression. The work around is to manually specify a tempb
that forwards to the realb
once it is defined.