Mason Protter
Mason Protter
Is it possible to get ob-julia working with julia-repl instead of ESS?
This moves `namespace_variables` to reflect the new naming (`unknowns`).
Ref conversation in https://github.com/tshort/StaticCompiler.jl/issues/145. The idea is that adding a `::Union{}` here lets the compiler know that it can remove `throw` calls. E.g. compare ```julia julia> using StaticTools julia> g()...
- [ ] Support storing and relocation of global variables - [ ] Support for linking binaries to julia's runtime - [ ] Support Windows. (Help wanted!) - [ ]...
1. Emacs version 26.1 2. Julia version 0.6.1 3. julia-repl version (MELPA) Package-Version: 20171116.46 Version: 0.0.1 4. self-contained steps to replicate the issue: ``` julia> readline() ``` then type some...
Currently, code gets entered with `include` which makes sense, but I just learned today about https://github.com/MichaelHatherly/InteractiveErrors.jl which makes me wish that the code was entered using `Revise.includet` so that I...
Currently, Enzyme.jl's reverse mode autodiff doesn't work correctly with Bumper.jl because if you give it a `Duplicated` buffer, it'll `+=` accumulate results into the duplicated buffer making the answer depend...
I'm not sure there's much advantage to me letting people wrap whatever type like like for this thing. Might be better to simply do: ```julia mutable struct AllocBuffer ptr::Ptr{UInt8} length::Int...
Currently, if you encounter an error in a LegibleLambda, the printing in the stacktrace is still not legible: ```julia julia> using LegibleLambdas julia> g = @λ x -> x +...
One possible thing that we could do is use Cassette to descend into the AST of a standard Julia anonymous function to obtain its `Expr` form. Then, we could overwrite...