From 29b189900bb52c7b32470e9f1e7f4b69b02293b9 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Fri, 30 Jun 2017 19:18:04 +0000 Subject: [PATCH] added ocaml and opam --- see_also/ocaml | 2 ++ see_also/opam | 2 ++ sheets/opam | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 see_also/ocaml create mode 100644 see_also/opam create mode 100644 sheets/opam diff --git a/see_also/ocaml b/see_also/ocaml new file mode 100644 index 0000000..6296625 --- /dev/null +++ b/see_also/ocaml @@ -0,0 +1,2 @@ +ocaml +opam diff --git a/see_also/opam b/see_also/opam new file mode 100644 index 0000000..6296625 --- /dev/null +++ b/see_also/opam @@ -0,0 +1,2 @@ +ocaml +opam diff --git a/sheets/opam b/sheets/opam new file mode 100644 index 0000000..f475871 --- /dev/null +++ b/sheets/opam @@ -0,0 +1,34 @@ +# OPAM is a source-based package manager for OCaml + +# Initialize ~/.opam using an already installed OCaml +opam init +opam init --comp 4.02.3 +# Initialize with a freshly compiled OCaml 4.02.3 + +# List all available packages +opam list -a + +# List packages with QUERY in their name or description +opam search ${QUERY} + +# Display information about PACKAGE +opam show ${PACKAGE} + +# Download, build and install the latest version of PACKAGE +# and all its dependencies +opam install ${PACKAGE} + +# Update the packages database +opam update + +# Bring everything to the latest version possible +opam upgrade + +# Command-specific manpage +opam CMD --help + +# install static analysis and indentation for ocaml +opam install ocp-indent merlin +# configure editor as recommended in the installation output +# + (for vim) don't forget to add "filetype plugin on" in ~/.vimrc +