Advertisement
Guest User

Untitled

a guest
Oct 9th, 2014
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $ cat a.ml
  2. let f x = B.g x + 1
  3. $ cat b.ml
  4. let g x = x - 1
  5. $ ocamlc -bin-annot -c b.ml
  6. $ ocamlc -bin-annot -c a.ml
  7.  
  8. # Now open a.ml, move point to the 'g' in 'B.g' and try merlin-locate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement