Advertisement
Guest User

Untitled

a guest
Nov 20th, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. $ opam show core | grep ^version
  2. version      v0.16.2
  3. $ cat dune-project
  4. (lang dune 3.11)
  5.  
  6. (name foo)
  7. $ cat dune
  8. (executable
  9.  (name foo)
  10.  (libraries core))
  11. $ cat foo.ml
  12. open Core
  13.  
  14. let _f = String.Map.find
  15.  
  16. let _xxx = String.make
  17.  
  18. let () = print_endline "Hello, World!"
  19. $ dune build foo.exe
  20. File "foo.ml", line 3, characters 9-24:
  21. 3 | let _f = String.Map.find
  22.              ^^^^^^^^^^^^^^^
  23. Error: Unbound value String.Map.find
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement