Keith Mason

Results 3 issues of Keith Mason

When running Gallium in Windows with Julia 0.5.0, hitting a breakpoint causes Julia to exit (crash). ``` julia> using Gallium julia> foo(x) = x+1 foo (generic function with 1 method)...

`print` calls `write` multiple times which results in unnecessary fragmentation on the stream. Try to insure that the entire request is sent out in as few packets as possible by...

``` julia> JSON.parse("[1,2,3]") 3-element Array{Any,1}: 1 2 3 ``` Why is this an `Any` array? Shouldn't it behave the same way as Julia parsing? e.g., `[1,2,3]` generates an `Int` array,...