obadz
obadz
Hi @richardgv, Thanks for your prompt reply. What you describe seems to match my symptoms: problem was indeed triggered on first command sent to daemon. I'm not setup to compile...
Yes (sorry for the delayed response). I invoke utop, keypress '*', keypress ')', keypress enter => crash.
I should probably specify: I'm using Ubuntu 14.04 / Linux 3.16.1-031601-generic
Yes. Contains this: ``` ocaml (* Added by OPAM. *) let () = try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH") with Not_found -> () ;; #use "topfind" #require "core" (* open Core.Std *)...
Removing it or putting an invalid expression in it seems to fix the problem, but I'm not sure what's wrong with my ocamlinit?
Adding ;; after requires doesn't seem to change the issue.
The crash happens when my .ocamlinit contains the single line below: ``` ocaml #require "core" ;; ```
Thanks for #311 @vcunat!
Can this library be used to transparently turn non-float/string/dates into object handles and vice-versa?
Here's some code I've written to do automatic object handle conversions and exceptions wrapping: ``` fsharp open System open System.Collections.Generic open System.Linq.Expressions open ExcelDna.Integration open ExcelDna.Registration // XlCache module largely...