summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSon Ho2022-04-29 18:11:52 +0200
committerSon Ho2022-04-29 18:11:52 +0200
commitae04cde7b7d5acaf0ae7957276e026a5fcd6706e (patch)
treed81ea63c63bf631c60a6158451f3befd2696e2aa /src
parentd6d54b6f7e39545e971a78cf499723c3824865d8 (diff)
Add ConstStrings.ml
Diffstat (limited to 'src')
-rw-r--r--src/ConstStrings.ml7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ConstStrings.ml b/src/ConstStrings.ml
new file mode 100644
index 00000000..ae169a2e
--- /dev/null
+++ b/src/ConstStrings.ml
@@ -0,0 +1,7 @@
+(** Some utilities *)
+
+(** Basename for state variables (introduced when using state-error monads) *)
+let state_basename = "st"
+
+(** ADT constructor prefix (used when pretty-printing) *)
+let constructor_prefix = "Mk"