-
-
Save Khady/4ffc822f6b127c1bd4862701de0868f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let a = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let () = | |
print_int L.Foo.a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment