L. Bete

Results 4 issues of L. Bete

addresses issue https://github.com/MikeInnes/Lazy.jl/issues/124

Addresses https://github.com/MikeInnes/Lazy.jl/issues/123

```julia using Lazy @bounce pow(x, n ; res=1) = n > 0 ? pow(x, n-1; res=res*x) : res ``` gives the error: ``` syntax: invalid syntax ; res = 1...

When I execute this, for example (Jupyter Notebook): ```julia @bounce function pair(n) return n > 1 ? pair(n - 2) : 1 - n end ``` I get the following...