Re: Global procedure access?

2019-01-16 Thread juancarlospaco
The code reordering experimental someday can improve this (?).

Re: Global procedure access?

2019-01-16 Thread miran
proc b() proc a(n: int) = b() proc b() = a(42) Run Forward declaration needed, [see here for a short example/explanation](https://narimiran.github.io/nim-basics/#_forward_declaration)

Global procedure access?

2019-01-16 Thread lqdev
I don't know if I titled my problem correctly, but this is what I'm trying to achieve: proc a(n: int) = b() proc b() = a(42) Run I know this example would recur infinitely, but my actual use case breaks `a` on a condition. I already tried using t