ReasonNativeProject icon indicating copy to clipboard operation
ReasonNativeProject copied to clipboard

Add another module

Open mrkaspa opened this issue 8 years ago • 1 comments

I created another module with this

module Demo = {
  let demo () => print_string "eooo";
};

And I tried to use it screen shot 2017-06-02 at 9 26 29 am

But the linter says that merlin can't find it, is there something wrong with .merlin file

PKG topkg reason # the OPAM packages B ./_build/src # built artifacts location S ./src # source location

btw the file is inside /src

mrkaspa avatar Jun 02 '17 14:06 mrkaspa

Try building the project first (if you haven't solved this already!). merlin requires some build artifacts to do lookups in/validation against modules outside of the current file.

hcarty avatar Jul 28 '17 18:07 hcarty