From 9aa6ba38a93a403ecc8f0b2ef299ba23872ae663 Mon Sep 17 00:00:00 2001 From: bunny Date: Wed, 17 Sep 2025 22:53:36 +0100 Subject: [PATCH] added utop support --- .ocamlinit | 3 +++ Makefile | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 .ocamlinit diff --git a/.ocamlinit b/.ocamlinit new file mode 100644 index 0000000..702eca1 --- /dev/null +++ b/.ocamlinit @@ -0,0 +1,3 @@ +#load "parser.cmo";; +#load "periodic.cmo";; +#load "main.cmo";; diff --git a/Makefile b/Makefile index ad616e8..45938f0 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,9 @@ native: byte: ocamlfind ocamlc $(common_files) + +utop: byte + utop $(common_object) + clean: rm -f *.cmo *.cmi *.o *.out *.cmx