Skip to content

Instantly share code, notes, and snippets.

@Khady
Last active May 28, 2019 05:57
Show Gist options
  • Save Khady/4ffc822f6b127c1bd4862701de0868f1 to your computer and use it in GitHub Desktop.
Save Khady/4ffc822f6b127c1bd4862701de0868f1 to your computer and use it in GitHub Desktop.
(library
(name l)
(modules (:standard \ main))
(flags (:standard -w -33))
(libraries
threads ; must be first
unix
)
(preprocess (pps lwt_ppx ppx_deriving.std)))
(executable
(name main)
(modules main)
(libraries l extlib)
(preprocess (pps lwt_ppx ppx_deriving.std)))
let a = 3
let () =
print_int L.Foo.a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment