Advertisement
Guest User

Untitled

a guest
Oct 14th, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. $ ocaml
  2. OCaml version 4.02.0
  3.  
  4. # #use "topfind" ;;
  5. - : unit = ()
  6. Findlib has been successfully loaded. Additional directives:
  7. #require "package";; to load a package
  8. #list;; to list the available packages
  9. #camlp4o;; to load camlp4 (standard syntax)
  10. #camlp4r;; to load camlp4 (revised syntax)
  11. #predicates "p,q,...";; to set these predicates
  12. Topfind.reset();; to force that packages will be reloaded
  13. #thread;; to enable threads
  14.  
  15. - : unit = ()
  16. # #require "ppx_deriving" ;;
  17. /home/kaustuv/.opam/4.02.0/lib/ppx_deriving: added to search path
  18. /home/kaustuv/.opam/4.02.0/lib/ppx_deriving/./ppx_deriving: activated
  19. # type t = [`A | `B] [@@deriving show] ;;
  20. Unrecognized [@@deriving] annotation syntax
  21. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement