We would love to have as much of the dynamism of Smalltalk as possible. Not only coding in the debugger, but also coding together with the AI in the debugger! And at the same time to have more coding assistance from type inference and autocompletion. Could you share your use case with us? We’re collecting evidence that people would be interested in such a product.| OCaml
Why Lean 4 replaced OCaml as my Primary Language| OCaml
Hello, While working on Raven with heterogeneous columns of a dataframe, I encountered let cumsum t name = match get_column t name with | Some (Col.P (dtype, tensor)) -> ( match dtype with | Nx.Float32 -> let arr : float array = Nx.to_array tensor in let result = Array.copy arr in for i = 1 to Array.length result - 1 do result.(i) <- result.(i - 1) +. result.(i) done; Col.P (dtype, Nx.create dty...| OCaml
I’ve been coding in OCaml and using opam for quite a long time now. I’ve still not managed to install a local directory without first creating a git commit. It’s a papercut I’ve worked my way around for a long time now. Specifically, running e.g. opam install . --switch=myswitch will not install the current folder if I have not commited my last changes. Which is annoying, sometimes I just want to install whatever my current work is. I think the most annoying part is the fact that opam...| OCaml