We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4699b1 commit b24645aCopy full SHA for b24645a
interpreter/.merlin
interpreter/dune
@@ -0,0 +1,29 @@
1
+(include_subdirs unqualified)
2
+
3
+(library
4
+ (name interpreter_lib)
5
+ (modules :standard \ main))
6
7
+(executable
8
+ (name main)
9
+ (modules main)
10
+ (libraries interpreter_lib)
11
+ (flags
12
+ (-open Interpreter_lib)))
13
14
+(subdir
15
+ text
16
+ (rule
17
+ (target lexer.ml)
18
+ (deps lexer.mll)
19
+ (action
20
+ (chdir
21
+ %{workspace_root}
22
+ (run %{bin:ocamllex} -ml -q -o %{target} %{deps}))))
23
+ (ocamlyacc
24
+ (modules parser)))
25
26
+(env
27
+ (dev
28
29
+ (-w -27-8))))
interpreter/dune-project
@@ -0,0 +1 @@
+(lang dune 2.9)
0 commit comments